/* Authentication Pages Styles */
.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;
} 