* {
    box-sizing: border-box;
}

body {
    background-color: #0f172a;
    color: #f8fafc;
    font-family: "Inter", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background: #1e293b;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #334155;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

h1 {
    text-align: center;
    color: #3b82f6;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    width: 100%;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #cbd5e1;
}

input[type="email"],
input[type="password"],
input[type="text"],
.form-control {
    width: 100% !important;
    padding: 0.75rem 1rem !important;
    background-color: #334155 !important;
    color: #f8fafc !important;
    border: 1px solid #475569 !important;
    border-radius: 0.5rem !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
}

button:not(.password-toggle) {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

button:not(.password-toggle):hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Redundant styles removed - now handled by dark-theme.css globally */
