/* ============================================================
   Source: auth/forgot-password.jsp
   Date: 2026-06-15
============================================================ */

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            --navy:   #10375C;
            --orange: #EB8317;
            --orange-hover: #d4751a;
            --alice:  #F0F4FA;
            --yellow: #F5C842;
            --radius-btn:  8px;
            --radius-card: 16px;
        }

        html, body {
            height: 100%;
            font-family: 'Inter', sans-serif;
            -webkit-font-smoothing: antialiased;
        }

        .fp-root {
            min-height: 100vh;
            display: flex;
        }

        .left-pane {
            display: none;
            width: 50%;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        @media (min-width: 1024px) { .left-pane { display: flex; } }

        .left-pane__bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .left-pane__overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to bottom,
                rgba(16,55,92,0.55) 0%,
                rgba(16,55,92,0.30) 35%,
                rgba(16,55,92,1.00) 100%
            );
        }

        .left-pane__content {
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
            padding: 40px 48px;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .brand-logo__icon {
            width: 36px;
            height: 36px;
            background: var(--orange);
            border-radius: var(--radius-btn);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(235,131,23,0.40);
            flex-shrink: 0;
        }

        .brand-logo__icon svg { width: 20px; height: 20px; color: #fff; }

        .brand-logo__name {
            color: #fff;
            font-size: 20px;
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1;
        }

        .left-pane__bottom { margin-top: auto; }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 4px 12px;
            border-radius: 9999px;
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.20);
            color: var(--yellow);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .left-pane__headline {
            color: #fff;
            font-size: 38px;
            line-height: 1.1;
            font-weight: 800;
            letter-spacing: -0.025em;
            margin-bottom: 16px;
        }

        .left-pane__sub {
            color: rgba(255,255,255,0.70);
            font-size: 15px;
            line-height: 1.7;
            max-width: 380px;
        }

        .right-pane {
            width: 100%;
            background: var(--alice);
            display: flex;
            flex-direction: column;
            overflow-y: auto;
        }

        @media (min-width: 1024px) { .right-pane { width: 50%; } }

        .mobile-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 20px 32px;
        }
        @media (min-width: 1024px) { .mobile-logo { display: none; } }

        .mobile-logo__icon {
            width: 32px;
            height: 32px;
            background: var(--orange);
            border-radius: calc(var(--radius-btn) - 2px);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-logo__icon svg { width: 16px; height: 16px; color: #fff; }

        .mobile-logo__name {
            color: var(--navy);
            font-size: 18px;
            font-weight: 800;
            letter-spacing: -0.03em;
        }

        .right-pane__center {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 48px 24px;
        }

        .right-pane__inner { width: 100%; max-width: 520px; }

        .fp-card {
            background: #fff;
            box-shadow: 0 4px 40px rgba(16,55,92,0.10);
            border-radius: var(--radius-card);
            padding: 40px 32px;
            animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
        }

        .fp-card__title {
            color: var(--navy);
            font-size: 26px;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 8px;
            line-height: 1.2;
        }

        .fp-card__subtitle {
            color: rgba(16,55,92,0.50);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 28px;
        }

        .alert-banner {
            border-radius: var(--radius-btn);
            padding: 12px 16px;
            font-size: 13px;
            font-weight: 500;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
            line-height: 1.5;
        }

        .alert-banner--error {
            background: #FEF2F2;
            border: 1px solid #FECACA;
            color: #DC2626;
        }

        .alert-banner--success {
            background: #f0fdf4;
            border: 1px solid #dcfce7;
            color: #15803d;
        }

        .alert-banner svg { flex-shrink: 0; }

        .fp-form { display: flex; flex-direction: column; gap: 20px; }

        .form-group { display: flex; flex-direction: column; gap: 6px; }

        .form-label {
            color: rgba(16,55,92,0.80);
            font-size: 13px;
            font-weight: 600;
        }

        .form-input {
            width: 100%;
            background: #fff;
            border: 1px solid #D8DFF0;
            border-radius: calc(var(--radius-btn) - 2px);
            padding: 12px 16px;
            font-size: 14px;
            font-family: inherit;
            color: var(--navy);
            outline: none;
            transition: border-color 0.15s, box-shadow 0.15s;
        }

        .form-input::placeholder { color: rgba(16,55,92,0.35); }

        .form-input:focus {
            border-color: var(--navy);
            box-shadow: 0 0 0 3px rgba(16,55,92,0.10);
        }

        .btn-submit {
            width: 100%;
            background: var(--orange);
            color: #fff;
            font-family: inherit;
            font-size: 15px;
            font-weight: 700;
            padding: 14px;
            border: none;
            border-radius: var(--radius-btn);
            cursor: pointer;
            transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
            box-shadow: 0 8px 24px rgba(235,131,23,0.32);
            margin-top: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-submit:hover { background: var(--orange-hover); }
        .btn-submit:active { transform: scale(0.99); }

        .btn-back {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            color: rgba(16,55,92,0.45);
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            transition: color 0.15s;
            margin-top: 16px;
        }

        .btn-back:hover { color: var(--navy); }

        .card-footer-note {
            text-align: center;
            color: rgba(16,55,92,0.40);
            font-size: 12px;
            margin-top: 24px;
        }

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