body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.forgot-link {
    color: #8b5cf6;
    text-decoration: none;
    transition: color 0.2s ease;
    cursor: pointer;
}

.forgot-link:hover {
    color: #a78bfa;
}

/* Password Strength Indicator */
.password-strength {
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

.strength-weak {
    background: var(--error-color);
    width: 25%;
}

.strength-fair {
    background: #f59e0b;
    width: 50%;
}

.strength-good {
    background: #3b82f6;
    width: 75%;
}

.strength-strong {
    background: var(--success-color);
    width: 100%;
}

/* Hide/Show Containers */
.container {
    display: none;
}

.container.active {
    display: block;
}