        /* Auth tabs */
        .auth-tabs {
            display: flex;
            margin-bottom: 1.75rem;
            border-bottom: 2px solid var(--border);
        }

        .auth-tab {
            flex: 1;
            padding: 0.6rem;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
            font-family: 'Helvetica Neue', sans-serif;
            color: var(--slate);
            font-weight: 500;
            border-bottom: 2px solid transparent;
            margin-bottom: -2px;
            transition: all 0.2s;
        }

        .auth-tab.active {
            color: var(--sage);
            border-bottom-color: var(--sage);
        }

        .auth-panel {
            display: none;
        }

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

        /* OTP digits */
        .otp-row {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            margin: 1.5rem 0 0.5rem;
        }

        .otp-digit {
            width: 44px;
            height: 54px;
            text-align: center;
            font-size: 1.4rem;
            font-weight: 700;
            border: 2px solid var(--border);
            border-radius: 8px;
            background: var(--cream);
            transition: all 0.2s;
        }

        .otp-digit:focus {
            outline: none;
            border-color: var(--sage);
            background: #fff;
        }

        .otp-digit.filled {
            border-color: var(--sage);
            background: #fff;
        }

        .auth-link-row {
            text-align: center;
            margin-top: 1rem;
        }

        .auth-link {
            background: none;
            border: none;
            color: var(--sage);
            cursor: pointer;
            font-size: 0.9rem;
            text-decoration: underline;
            font-family: 'Helvetica Neue', sans-serif;
        }

        .auth-error {
            color: #c0392b;
            font-size: 0.88rem;
            font-family: 'Helvetica Neue', sans-serif;
            min-height: 1.2em;
            margin: 0.5rem 0 0;
            text-align: center;
        }

        .resend-timer {
            font-size: 0.82rem;
            color: var(--slate);
            margin-left: 0.4rem;
        }

        .masked-email-hint {
            text-align: center;
            font-size: 0.9rem;
            color: var(--slate);
            margin-bottom: 0.25rem;
        }

        #resetSection .masked-email-hint {
            text-align: left;
        }

        .reset-code-copy {
            text-align: left;
            font-size: 0.88rem;
            color: var(--slate);
        }

        .reset-code-spam-copy {
            text-align: left;
            font-size: 0.82rem;
            color: var(--slate);
            margin: 1rem 0 0.75rem;
        }

        .login-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .login-card {
            background: var(--white);
            padding: 3rem;
            border-radius: 16px;
            box-shadow: 0 20px 60px var(--shadow);
            max-width: 420px;
            width: 100%;
            animation: fadeIn 0.5s ease-out;
        }

        .logo {
            text-align: center;
            margin-bottom: 2rem;
        }

        .logo-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--sage), var(--eucalyptus));
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 28px;
        }
        .logo-icon .bi.bi-feather{
            color: #fff;
        }
        .login-card h1{
            font-weight: 500;
        }

        .subtitle {
            color: var(--slate);
            font-family: 'Helvetica Neue', sans-serif;
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }
