@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

.login-main-wrap{
    width: 100%; 
    height: 100vh; 
    overflow-y: hidden; 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 40px;
	background: #ffffff;
}

.login-left-colum{
    display: flex; 
    justify-content: center; 
    align-items: center;
}

.login-form{
    width: 90%; 
    max-width: 450px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: start; 
    flex-direction: column; 
    gap: 30px;
}

.login-form .brand-logo{
    width: 150px;
}

.login-form .brand-logo img{
    width: 100%;
}

form.login .head{
    width: 100%; 
    margin-bottom: 15px;
}

form.login .head h3{
    font-size: 28px; 
    color: #2B3674;
}

form.login .head p{
    font-size: 16px; 
    color: #4D4D4D;
}

form.login .form-group{
    margin-bottom: 10px;
}

form.login .form-group label{
    font-size: 16px; 
    color: #4D4D4D;
}

form.login .form-group input{
    font-size: 16px; 
    padding: 0.6rem 1rem; 
    border: 1px solid #E0E5F2; 
    border-radius: 10px;
}

form.login .form-group input::placeholder{
    color: #A3AED0;
}

.form-control{
    font-size: 16px; 
    padding: 0.8rem 1rem; 
    border: 1px solid #E0E5F2; 
    border-radius: 10px;
}

.btn{
    background: #2B3674; 
    color: #ffffff; 
    border-radius: 10px; 
    font-size: 14px;
}

.login-form .btn{
	font-size: 16px;
    background: #2B3674; 
    color: #ffffff;
}

.login-form .btn:hover, .login-form .btn:focus, .login-form .btn:active{
    background: #2B3674; 
    color: #ffffff;
}
.login-form .btn:first-child:active{
	background: #2B3674; 
    color: #ffffff;
}

input:-webkit-autofill, input:-webkit-autofill:focus{background-color: #ffffff !important;}


body.theme-3 .form-control:focus{border-color: #E0E5F2 !important; box-shadow: 0 0 0 0 !important; }

.copyright{
    color: #515253; 
    text-align: center;
}

.login-right-colum{
    height: 100vh; 
    overflow: hidden; 
    border-radius: 0 0 0 25%;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
}

.login-form-brand{
    background: url('../assets/img/login-bg.png') no-repeat; 
    background-size: cover; 
    background-position: center;
    width: 100%; 
    height: 100%; 
    display: flex; 
    justify-content: center; 
    align-items: center;
    position: relative;
}

.login-form-brand::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M0,100 Q50,50 100,100 T200,100 L200,200 L0,200 Z" fill="%23ffffff" opacity="0.1"/></svg>') no-repeat;
    background-size: cover;
    background-position: bottom;
}

.login-form-brand .brand-logo{
    width: 70%;
    position: relative;
    z-index: 1;
}

.login-form-brand .brand-logo img{
    width: 100%;
}

.password-wrap{
    position: relative;
}

.field-icon {
    position: absolute; 
    top: 15px; 
    right: 10px; 
    z-index: 2;
    cursor: pointer;
    color: #A3AED0;
}

.field-icon:hover {
    color: #2B3674;
}

.auth-link {
    color: #2B3674 !important;
    text-decoration: none;
    font-size: 14px;
}

.auth-link:hover {
    color: #1a2a5c !important;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-main-wrap {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .login-right-colum {
        display: none;
    }
    
    .login-left-colum {
        height: 100vh;
        padding: 20px;
    }
    
    .login-form {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .login-form {
        width: 100%;
        max-width: 350px;
    }
    
    form.login .head h3 {
        font-size: 24px;
    }
    
    form.login .head p {
        font-size: 14px;
    }
    
    form.login .form-group input {
        font-size: 14px;
        padding: 0.7rem 0.9rem;
    }
    
    .btn {
        font-size: 13px;
        padding: 0.7rem 1rem;
    }
}
