/* Authentication Pages Styles */
.login.login-v2,
.login.login-v2 a,
.login.login-v2 label,
.login.login-v2 .login-content a {
    color: #000 !important;
}

.login.login-v2 .login-header .brand,
.login.login-v2 .login-header .brand a,
.login.login-v2 .login-header .brand small,
.login.login-v2 .login-header .brand b,
.login.login-v2 .login-header .brand span {
    color: #fff !important;
}

.auth-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    margin: 1rem 0;
}

.auth-card .form-control {
    color: #333 !important;
    background-color: rgba(255, 255, 255, 0.9) !important;
}

.auth-card .form-control:focus {
    color: #333 !important;
    background-color: rgba(255, 255, 255, 1) !important;
}

.auth-card .form-floating > label {
    color: #666 !important;
}

/* Password validation styles */
.not-met {
    color: red;
}

.met {
    color: green;
} 