.login-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 2rem;
    background: var(--bg-tertiary);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.login-form .form-group,
.reset-password-form .form-group {
    margin-bottom: 1rem;
}

.login-form label,
.reset-password-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.login-form input,
.reset-password-form input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.password-requirements {
    margin-top: 0.5rem;
    padding: 0.75rem;
    background: var(--bg-quaternary);
    border-radius: 4px;
    border-left: 3px solid var(--accent-color);
}

.password-requirements small {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.password-requirements ul {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--text-secondary);
}

.password-requirements li {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.login-btn {
    width: 100%;
    padding: 0.75rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 1rem;
}

.login-btn:hover {
    background: #0056b3;
}

.forgot-password-link {
    display: block;
    text-align: center;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.forgot-password-link:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}