/* ============================================
   BakerySaaS - Login Page Styles
   Matches Landing Page Design System
   ============================================ */

/* ============================================
   LOGIN SECTION
   ============================================ */
.brand-logo-image {
    height: 46px;
    width: auto;
    display: block;
}

.login-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 40px;
    overflow: hidden;
    background: linear-gradient(135deg, #fafbff 0%, #f0f4ff 50%, #fef5f0 100%);
}

/* Background - matches hero style */
.login-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.login-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle 800px at 20% 30%, rgba(99, 102, 241, 0.12), transparent),
        radial-gradient(circle 600px at 80% 70%, rgba(249, 115, 22, 0.08), transparent),
        radial-gradient(circle 400px at 60% 20%, rgba(139, 92, 246, 0.1), transparent);
}

.login-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.04) 1.5px, transparent 1.5px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.04) 1.5px, transparent 1.5px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 70%);
}

.login-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: loginGlow 8s ease-in-out infinite;
}

.login-glow-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.15));
    top: -150px;
    right: 10%;
}

.login-glow-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(236, 72, 153, 0.08));
    bottom: -100px;
    left: 5%;
    animation-delay: -4s;
}

.login-glow-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(14, 184, 166, 0.1));
    top: 40%;
    left: 45%;
    animation-delay: -2s;
}

@keyframes loginGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.1); }
}

/* ============================================
   LOGIN LAYOUT
   ============================================ */
.login-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 180px);
}

/* ============================================
   LEFT - INFO PANEL
   ============================================ */
.login-info {
    animation: slideInLeft 0.7s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.login-info-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 6px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.15);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.1);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.login-info-badge .badge-icon {
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
}

.login-info-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.login-info-desc {
    font-size: var(--text-lg);
    color: var(--gray-500);
    line-height: var(--leading-relaxed);
    margin-bottom: 2rem;
    max-width: 440px;
}

/* Feature list */
.login-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.login-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-slow);
}

.login-feature:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-200);
}

.login-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--primary-50);
    color: var(--primary-600);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.login-feature-icon.teal {
    background: #ccfbf1;
    color: #0d9488;
}

.login-feature-icon.violet {
    background: #ede9fe;
    color: #7c3aed;
}

.login-feature h4 {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 2px;
}

.login-feature p {
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin: 0;
    line-height: 1.4;
}

/* Trust bar */
.login-trust {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-avatars {
    display: flex;
}

.trust-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    border: 2px solid white;
    margin-left: -8px;
}

.trust-avatar:first-child {
    margin-left: 0;
}

.trust-avatar-count {
    background: var(--gradient-primary);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
}

.login-trust p {
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin: 0;
}

.login-trust strong {
    color: var(--gray-700);
}

/* ============================================
   RIGHT - LOGIN CARD
   ============================================ */
.login-card-wrapper {
    animation: slideInRight 0.7s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.login-card {
    background: white;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--gray-200);
    padding: 2.5rem;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(99, 102, 241, 0.04);
    position: relative;
    overflow: hidden;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

/* Card header */
.login-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-brand-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}

.login-card-header h2 {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--gray-900);
    margin: 0 0 0.25rem;
}

.login-card-header p {
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin: 0;
}

/* ============================================
   FORM STYLES
   ============================================ */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.login-form .form-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--gray-700);
}

.login-form .form-label i {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.form-input {
    width: 100%;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 0.75rem 1rem;
    font-size: var(--text-sm);
    font-family: var(--font-sans);
    background: var(--gray-50);
    color: var(--gray-900);
    transition: all var(--transition-base);
    outline: none;
}

.form-input::placeholder {
    color: var(--gray-400);
}

.form-input:hover {
    border-color: var(--gray-300);
}

.form-input:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
    background: white;
}

/* Password wrapper */
.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper .form-input {
    padding-right: 44px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-400);
    font-size: 1.1rem;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-base);
    border-radius: var(--radius-sm);
}

.password-toggle:hover {
    color: var(--primary-500);
}

/* Form row - remember / forgot */
.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-sm);
    color: var(--gray-600);
    font-weight: 500;
    cursor: pointer;
    margin: 0;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--primary-500);
    border-radius: var(--radius-sm);
}

.forgot-link {
    font-size: var(--text-sm);
    color: var(--primary-600);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-base);
}

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

/* Login button */
.btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    font-weight: 700;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
    margin-top: 0.5rem;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.btn-login:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.btn-login i {
    transition: transform var(--transition-base);
}

.btn-login:hover i {
    transform: translateX(4px);
}

/* ============================================
   MESSAGES
   ============================================ */
.login-messages {
    min-height: 24px;
}

.msg {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-weight: 600;
}

.msg-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.msg-success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.d-none {
    display: none !important;
}

/* Card footer */
.login-card-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-100);
}

.login-card-footer p {
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin: 0;
}

.login-card-footer a {
    color: var(--primary-600);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-base);
}

.login-card-footer a:hover {
    color: var(--primary-700);
    text-decoration: underline;
}

/* ============================================
   FOOTER (Match Landing)
   ============================================ */
.footer {
    padding: 3rem 0 1.5rem;
    background: var(--gray-900);
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    border-bottom: 0;
    padding-bottom: 0;
}

.footer-logo img {
    height: 34px;
    width: auto;
    margin-bottom: 0.75rem;
}

.footer-col p {
    color: var(--gray-400);
    line-height: 1.65;
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
}

.footer-social a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    color: var(--gray-400);
    border-radius: var(--radius-md);
    transition: all 0.25s;
    font-size: 0.95rem;
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-1px);
}

.footer-col h4 {
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.4rem;
}

.footer-col ul li a {
    color: var(--gray-400);
    font-size: 0.8125rem;
    transition: all 0.2s;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: var(--gray-500);
    font-size: 0.75rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .login-layout {
        gap: 3rem;
    }

    .login-info-title {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 768px) {
    .brand-logo-image {
        height: 40px;
    }

    .login-section {
        padding: 80px 0 20px;
    }

    .login-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }

    .login-info {
        text-align: center;
    }

    .login-info-desc {
        max-width: none;
    }

    .login-features {
        display: none;
    }

    .login-trust {
        justify-content: center;
    }

    .login-card {
        padding: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }

    .footer {
        padding: 2rem 0 1.25rem;
    }
}

@media (max-width: 480px) {
    .login-section {
        padding: 70px 0 10px;
    }

    .login-info-badge {
        font-size: 0.8rem;
    }

    .login-info-title {
        font-size: 1.6rem;
    }

    .login-info-desc {
        font-size: var(--text-base);
    }

    .login-trust {
        display: none;
    }

    .login-card {
        padding: 1.5rem;
    }

    .login-brand-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .login-card-header h2 {
        font-size: var(--text-xl);
    }

    .btn-login {
        padding: 0.75rem 1.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ============================================
   FORGOT PASSWORD MODAL
   ============================================ */
.fp-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.fp-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.fp-modal {
    position: relative;
    background: white;
    border-radius: var(--radius-2xl, 16px);
    padding: 2.5rem;
    width: 100%;
    max-width: 440px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(99, 102, 241, 0.08);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    max-height: 90vh;
    overflow-y: auto;
}

.fp-overlay.active .fp-modal {
    transform: translateY(0) scale(1);
}

.fp-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary, linear-gradient(135deg, #6366f1, #8b5cf6));
}

.fp-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--gray-100, #f1f5f9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gray-500, #64748b);
    font-size: 0.9rem;
    transition: all 0.2s;
    z-index: 2;
}

.fp-close:hover {
    background: var(--gray-200, #e2e8f0);
    color: var(--gray-700, #334155);
    transform: rotate(90deg);
}

/* Steps */
.fp-step {
    display: none;
    text-align: center;
    animation: fpFadeIn 0.35s ease;
}

.fp-step.active {
    display: block;
}

@keyframes fpFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Icon badges */
.fp-icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.fp-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    background: var(--gradient-primary, linear-gradient(135deg, #6366f1, #8b5cf6));
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}

.fp-icon.otp {
    background: linear-gradient(135deg, #f97316, #fb923c);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
}

.fp-icon.success {
    background: linear-gradient(135deg, #10b981, #34d399);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}

.fp-icon.done {
    background: linear-gradient(135deg, #22c55e, #4ade80);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
    animation: fpPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes fpPop {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.fp-step h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--gray-900, #0f172a);
    margin: 0 0 0.5rem;
}

.fp-desc {
    font-size: 0.875rem;
    color: var(--gray-500, #64748b);
    line-height: 1.5;
    margin: 0 0 1.5rem;
}

.fp-desc strong {
    color: var(--gray-700, #334155);
}

/* Fields */
.fp-field {
    text-align: left;
    margin-bottom: 1rem;
}

.fp-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--gray-700, #334155);
    margin-bottom: 0.5rem;
}

.fp-label i {
    font-size: 0.85rem;
    color: var(--gray-400, #94a3b8);
}

.fp-input {
    width: 100%;
    border: 1.5px solid var(--gray-200, #e2e8f0);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-family: inherit;
    background: var(--gray-50, #f8fafc);
    color: var(--gray-900, #0f172a);
    transition: all 0.2s;
    outline: none;
}

.fp-input::placeholder { color: var(--gray-400, #94a3b8); }
.fp-input:focus {
    border-color: var(--primary-500, #6366f1);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
    background: white;
}

.fp-input-row { position: relative; }

/* Password wrapper */
.fp-pw-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.fp-pw-wrap .fp-input {
    padding-right: 44px;
}

.fp-pw-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-400, #94a3b8);
    font-size: 1.1rem;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    border-radius: 4px;
}

.fp-pw-toggle:hover { color: var(--primary-500, #6366f1); }

/* OTP inputs */
.fp-otp-inputs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.fp-otp-box {
    width: 48px;
    height: 54px;
    border: 2px solid var(--gray-200, #e2e8f0);
    border-radius: 12px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: inherit;
    color: var(--gray-900, #0f172a);
    background: var(--gray-50, #f8fafc);
    transition: all 0.2s;
    outline: none;
}

.fp-otp-box:focus {
    border-color: var(--primary-500, #6366f1);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
    background: white;
    transform: translateY(-2px);
}

/* Buttons */
.fp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 0.25rem;
}

.fp-btn-primary {
    background: var(--gradient-primary, linear-gradient(135deg, #6366f1, #8b5cf6));
    color: white;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.fp-btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.fp-btn-primary:active:not(:disabled) {
    transform: translateY(0);
}

.fp-btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.fp-btn-primary i {
    transition: transform 0.2s;
}

.fp-btn-primary:hover:not(:disabled) i {
    transform: translateX(3px);
}

/* Messages */
.fp-msg {
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0;
    border-radius: 8px;
    min-height: 20px;
    transition: all 0.2s;
}

.fp-msg.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
    padding: 0.6rem 0.75rem;
}

.fp-msg.success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
    padding: 0.6rem 0.75rem;
}

/* OTP resend */
.fp-otp-resend {
    font-size: 0.8125rem;
    color: var(--gray-500, #64748b);
    margin-top: 0.75rem;
}

.fp-link-btn {
    background: none;
    border: none;
    color: var(--primary-600, #4f46e5);
    font-weight: 600;
    font-size: 0.8125rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
    font-family: inherit;
}

.fp-link-btn:hover {
    color: var(--primary-700, #4338ca);
    text-decoration: underline;
}

/* Footer link */
.fp-footer-link {
    margin-top: 1.25rem;
    font-size: 0.8125rem;
}

.fp-footer-link a {
    color: var(--gray-500, #64748b);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    transition: color 0.2s;
}

.fp-footer-link a:hover {
    color: var(--primary-600, #4f46e5);
}

/* Responsive */
@media (max-width: 480px) {
    .fp-modal {
        padding: 1.75rem 1.25rem;
        margin: 0 12px;
        max-width: calc(100% - 24px);
    }

    .fp-otp-box {
        width: 42px;
        height: 48px;
        font-size: 1.1rem;
    }

    .fp-otp-inputs {
        gap: 6px;
    }

    .fp-step h3 {
        font-size: 1.2rem;
    }
}
