/* Emergency fix for white-on-white login form issue */

/* Ensure all form inputs on login page are readable */
.login-container .form-group input[type="email"],
.login-container .form-group input[type="password"],
.login-container .form-group input[type="text"] {
    background-color: white !important;
    color: #333 !important;
    border: 2px solid #ddd !important;
}

/* Ensure login submit button uses white text on red background */
.login-container button[type="submit"] {
    color: #ffffff !important;
}

.login-container .form-group input::placeholder {
    color: #888 !important;
    opacity: 1 !important;
}

.login-container .form-group label {
    color: #555 !important;
}

/* Ensure form container has proper styling */
.login-form {
    background: white !important;
    color: #333 !important;
}

.login-form h1 {
    color: #333 !important;
}

/* Fix any global CSS interference */
.login-container * {
    color: inherit !important;
}

.login-container.login-container .form-group input {
    color: #333 !important;
    background: white !important;
}
