/* Auth-specific styles (login, signup, password reset) */

body.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.auth-container {
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 1;
}

.auth-logo {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--light-mint), var(--soft-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.auth-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 32px;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-muted);
}

/* View states for multi-step forms */
.auth-view {
    display: none;
}

.auth-view.active {
    display: block;
}

/* OTP input styling */
.otp-input {
    font-family: 'JetBrains Mono', monospace;
    font-size: 24px;
    text-align: center;
    letter-spacing: 8px;
}

/* Password toggle */
.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 18px;
}

.password-toggle:hover {
    color: var(--text-secondary);
}

/* Info text */
.auth-info {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 14px;
}

