/* Login/Auth Pages Styles */

.login-section {
    padding: 150px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(29, 53, 87, 0.8), rgba(29, 53, 87, 0.8)), url('../images/hero/hero-bg-3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.login-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.login-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.login-logo {
    max-height: 60px;
}

.login-header h2 {
    color: var(--dark);
    font-size: 2rem;
    margin-bottom: 10px;
}

.login-header p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.login-form .form-label {
    font-weight: 500;
    color: var(--dark);
}

.login-form .input-group-text {
    background-color: #f8f9fa;
    border-right: none;
}

.login-form .form-control {
    border-left: none;
}

.login-form .form-control:focus,
.login-form .input-group-text:focus-within {
    box-shadow: none;
    border-color: #ced4da;
}

.login-form .form-control:focus + .input-group-text,
.login-form .input-group-text + .form-control:focus {
    border-color: #ced4da;
}

.btn-login {
    background: var(--primary);
    border-color: var(--primary);
    padding: 12px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-login:hover {
    background: #c1121f;
    border-color: #c1121f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.forgot-link {
    color: var(--primary);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
}

.forgot-link:hover {
    color: #c1121f;
    text-decoration: underline;
}

.divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    width: calc(50% - 30px);
    height: 1px;
    background-color: #e0e0e0;
    top: 50%;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    display: inline-block;
    background: white;
    padding: 0 15px;
    position: relative;
    color: #888;
    font-size: 0.9rem;
}

.btn-google {
    background-color: white;
    color: #444;
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-google img {
    height: 20px;
}

.btn-google:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.register-link {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.register-link:hover {
    color: #c1121f;
    text-decoration: underline;
}

/* Password toggle button */
#togglePassword {
    border-left: none;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .login-section {
        padding: 120px 0 50px;
    }
    
    .login-card {
        padding: 30px 20px;
    }
    
    .login-header h2 {
        font-size: 1.8rem;
    }
}