﻿/* Global Styles */
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
}

/* Container */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}

.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 80%;
    border-radius: 8px;
    overflow: hidden;
}

/* Login Form */
.login-form {
    padding: 40px;
    width: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

    .login-header img {
        width: 80px;
    }

.login-form h2, .login-form p {
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group input, .form-group select {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
    }

.password-wrapper {
    position: relative;
}

.eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    cursor: pointer;
    color: #007bff;
    margin-top:15px;
}

.login-form button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

    .login-form button:hover {
        background-color: #0056b3;
    }

/* Image */
.login-image {
    width: 50%;
    background-image: url('../assets/New.png'); /* Adjust path */
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;

}

/* Responsive Styles */
@media (max-width: 768px) {
    .login-wrapper {
        flex-direction: column;
        width: 90%;
        height: auto;
    }
    .login-header img {
        display: none; /* Hide the logo */
    }

    .login-form {
        width: 100%;
    }

    .login-image {
        width: 100%;
        height: 300px;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {


    .login-image {
       
        height: 72%;
       
    }
}
@media (min-width: 1024px) {


    .login-image {
        height: 72%;
    }
}