/* ── Locate2u Identity Server — 2025 Redesign ───────────────────── */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&display=swap');

/* ── Reset & Base ────────────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #F4F7FB;
    color: #384553;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: #2B93FF;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #1C3E61;
    text-decoration: none;
}

/* ── Animations ──────────────────────────────────────────────────── */
@keyframes dash {
    to { stroke-dashoffset: -200; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-24px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes ringPulse {
    0% { box-shadow: 0 0 0 0 rgba(43,147,255,0.25); }
    70% { box-shadow: 0 0 0 14px rgba(43,147,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(43,147,255,0); }
}

@keyframes successPop {
    0% { transform: scale(0.6); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ── Two-Panel Layout ────────────────────────────────────────────── */
.l2u-layout {
    display: flex;
    min-height: 100vh;
}

/* Left Panel — Dark blue brand panel */
.l2u-panel-left {
    flex: 0 0 44%;
    background: linear-gradient(160deg, #0D2137 0%, #1C3E61 55%, #163352 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 48px 48px 40px;
}

.l2u-panel-left .panel-logo {
    position: relative;
    z-index: 2;
    animation: slideIn 0.6s ease-out;
}

.l2u-panel-left .panel-logo img {
    height: 44px;
    object-fit: contain;
}

.l2u-panel-left .panel-hero {
    position: relative;
    z-index: 2;
    animation: fadeUp 0.8s ease-out 0.2s both;
}

.l2u-panel-left .panel-hero h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    color: #FFFFFF;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    white-space: pre-line;
}

.l2u-panel-left .panel-hero p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.55);
    max-width: 360px;
}

.l2u-panel-left .panel-trust {
    position: relative;
    z-index: 2;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    animation: fadeUp 0.8s ease-out 0.5s both;
}

/* Right Panel — White form panel */
.l2u-panel-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    background: #FFFFFF;
}

.l2u-form-container {
    width: 100%;
    max-width: 400px;
    animation: fadeUp 0.6s ease-out 0.3s both;
}

/* Mobile logo (shown on right panel for mobile, hidden on desktop) */
.l2u-mobile-logo {
    text-align: center;
    margin-bottom: 40px;
}

.l2u-mobile-logo img {
    height: 40px;
    object-fit: contain;
}

/* ── Form Heading ────────────────────────────────────────────────── */
.l2u-form-container h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1C3E61;
    margin-bottom: 6px;
}

.l2u-form-container .form-subtitle {
    font-size: 15px;
    color: #737474;
    margin-bottom: 32px;
}

/* ── Form Fields ─────────────────────────────────────────────────── */
.l2u-field {
    margin-bottom: 20px;
}

.l2u-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #384553;
    margin-bottom: 6px;
}

.l2u-field .field-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.l2u-field .field-header label {
    margin-bottom: 0;
}

.l2u-field .field-header a {
    font-size: 13px;
    color: #2B93FF;
    font-weight: 500;
}

.l2u-input-wrapper {
    position: relative;
}

.l2u-input-wrapper .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #9CA3AF;
    display: flex;
    align-items: center;
}

.l2u-input-wrapper .input-icon svg {
    width: 18px;
    height: 18px;
}

.l2u-input-wrapper input {
    width: 100%;
    padding: 13px 14px 13px 42px;
    font-size: 15px;
    font-family: inherit;
    border: 1.5px solid #DBDBDB;
    border-radius: 10px;
    outline: none;
    background: #FAFBFC;
    color: #384553;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.l2u-input-wrapper input:focus {
    border-color: #2B93FF;
    box-shadow: 0 0 0 3px rgba(43,147,255,0.1);
    background: #FFF;
}

.l2u-input-wrapper input::placeholder {
    color: #9CA3AF;
}

.l2u-input-wrapper .toggle-password {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    color: #9CA3AF;
}

.l2u-input-wrapper .toggle-password svg {
    width: 18px;
    height: 18px;
}

/* Password input needs extra right padding for the toggle button */
.l2u-input-wrapper input[type="password"],
.l2u-input-wrapper input.password-field {
    padding-right: 44px;
}

/* Select — matches input styling with a custom chevron on the right */
.l2u-input-wrapper select {
    width: 100%;
    padding: 13px 38px 13px 42px;
    font-size: 15px;
    font-family: inherit;
    border: 1.5px solid #DBDBDB;
    border-radius: 10px;
    outline: none;
    background: #FAFBFC;
    color: #384553;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.l2u-input-wrapper select:focus {
    border-color: #2B93FF;
    box-shadow: 0 0 0 3px rgba(43,147,255,0.1);
    background: #FFF;
}

.l2u-input-wrapper .select-chevron {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #9CA3AF;
    display: flex;
    align-items: center;
}

.l2u-input-wrapper .select-chevron svg {
    width: 14px;
    height: 14px;
}

/* ── Remember Me Checkbox ────────────────────────────────────────── */
.l2u-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.l2u-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1.5px solid #DBDBDB;
    background: #FAFBFC;
    cursor: pointer;
    accent-color: #2B93FF;
}

.l2u-checkbox label {
    font-size: 14px;
    color: #737474;
    cursor: pointer;
    user-select: none;
}

/* ── Buttons ─────────────────────────────────────────────────────── */
.l2u-btn-primary {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    color: #FFFFFF;
    background: #2B93FF;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.l2u-btn-primary:hover {
    background: #1C3E61;
}

.l2u-btn-primary:disabled {
    background: #1C3E61;
    cursor: default;
}

.l2u-btn-primary svg {
    width: 20px;
    height: 20px;
}

.l2u-btn-secondary {
    width: 100%;
    padding: 13px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    color: #384553;
    background: #FFFFFF;
    border: 1.5px solid #DBDBDB;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.l2u-btn-secondary:hover {
    border-color: #2B93FF;
    color: #2B93FF;
}

.l2u-btn-secondary svg {
    width: 16px;
    height: 16px;
}

/* ── Divider ─────────────────────────────────────────────────────── */
.l2u-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
}

.l2u-divider::before,
.l2u-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #E3E3E3;
}

.l2u-divider span {
    font-size: 13px;
    color: #737474;
}

/* ── Error Banner ────────────────────────────────────────────────── */
.l2u-error {
    background: #FFF0EE;
    border: 1px solid #FECACA;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #D32F2F;
    display: flex;
    align-items: center;
    gap: 8px;
}

.l2u-error svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

/* Reuse for validation summary */
.l2u-error ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ── Footer Link ─────────────────────────────────────────────────── */
.l2u-footer-link {
    text-align: center;
    font-size: 14px;
    color: #737474;
    margin-top: 32px;
}

.l2u-footer-link a {
    color: #2B93FF;
    font-weight: 600;
}

/* ── Back Link ───────────────────────────────────────────────────── */
.l2u-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #2B93FF;
    margin-bottom: 24px;
    transition: color 0.2s;
}

.l2u-back-link:hover {
    color: #1C3E61;
}

.l2u-back-link svg {
    width: 16px;
    height: 16px;
}

/* ── SSO / External Providers ────────────────────────────────────── */
.l2u-external-providers {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.l2u-external-providers .provider-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    color: #384553;
    background: #FFFFFF;
    border: 1.5px solid #DBDBDB;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.l2u-external-providers .provider-btn:hover {
    border-color: #2B93FF;
    color: #2B93FF;
}

.l2u-external-providers .provider-btn img {
    width: 20px;
    height: 20px;
}

/* ── Policy / Terms ──────────────────────────────────────────────── */
.l2u-policy {
    text-align: center;
    font-size: 12px;
    color: #737474;
    margin-top: 24px;
    line-height: 1.5;
}

.l2u-policy a {
    color: #2B93FF;
    font-weight: 500;
}

/* ── Success State (Forgot Password Confirm) ─────────────────────── */
.l2u-success {
    text-align: center;
    animation: scaleIn 0.4s ease-out;
}

.l2u-success .success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(11,218,142,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.l2u-success .success-icon svg {
    width: 40px;
    height: 40px;
}

.l2u-success h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1C3E61;
    margin-bottom: 8px;
}

.l2u-success p {
    font-size: 15px;
    color: #737474;
    line-height: 1.6;
    margin-bottom: 8px;
}

.l2u-success .email-highlight {
    font-size: 15px;
    font-weight: 600;
    color: #384553;
    margin-bottom: 32px;
}

.l2u-success .info-box {
    background: #F4F7FB;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 32px;
    text-align: left;
}

.l2u-success .info-box p {
    font-size: 14px;
    color: #737474;
    line-height: 1.6;
    margin-bottom: 0;
}

.l2u-success .info-box strong {
    color: #384553;
}

/* ── Redirect / Logging In Page ──────────────────────────────────── */
.l2u-redirect-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(160deg, #0D2137 0%, #1C3E61 55%, #163352 100%);
    position: relative;
    overflow: hidden;
}

.l2u-redirect-card {
    position: relative;
    z-index: 2;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 48px 44px 44px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.25), 0 8px 24px rgba(0,0,0,0.15);
    animation: scaleIn 0.5s ease-out;
    text-align: center;
}

.l2u-redirect-card .card-logo {
    height: 40px;
    object-fit: contain;
    margin-bottom: 36px;
}

.l2u-redirect-card .spinner-ring {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: rgba(43,147,255,0.06);
    animation: ringPulse 2s ease-out infinite;
}

.l2u-redirect-card .spinner-ring.done {
    background: rgba(5,150,105,0.1);
    animation: successPop 0.4s ease-out;
}

.l2u-redirect-card h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1C3E61;
    margin-bottom: 6px;
    transition: all 0.3s;
}

.l2u-redirect-card .status-text {
    font-size: 14px;
    color: #737474;
    margin-bottom: 32px;
    min-height: 20px;
}

/* Progress bar */
.l2u-progress {
    width: 100%;
    height: 4px;
    background: #EAF2FB;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 28px;
}

.l2u-progress .bar {
    height: 100%;
    border-radius: 4px;
    transition: width 0.4s ease-out;
    background: linear-gradient(90deg, #2B93FF 0%, #4ED2FF 50%, #2B93FF 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s linear infinite;
}

.l2u-progress .bar.done {
    background: #059669;
    animation: none;
}

/* Steps */
.l2u-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.l2u-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    transition: all 0.3s;
}

.l2u-step.active {
    background: rgba(43,147,255,0.04);
}

.l2u-step .step-indicator {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #F4F7FB;
    transition: all 0.3s;
}

.l2u-step.active .step-indicator {
    background: rgba(43,147,255,0.08);
}

.l2u-step.done .step-indicator {
    background: rgba(5,150,105,0.1);
    animation: successPop 0.3s ease-out;
}

.l2u-step .step-label {
    font-size: 14px;
    font-weight: 400;
    color: #C5CFDD;
    transition: all 0.3s;
}

.l2u-step.active .step-label {
    font-weight: 500;
    color: #1C3E61;
}

.l2u-step.done .step-label {
    color: #1C3E61;
}

.l2u-step .active-dot {
    margin-left: auto;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2B93FF;
    animation: pulse 1.2s ease-in-out infinite;
}

/* Bottom trust on redirect page */
.l2u-redirect-layout .bottom-trust {
    position: absolute;
    bottom: 32px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.25);
    z-index: 2;
}

/* ── Route Paths SVG Background ──────────────────────────────────── */
.route-paths-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

/* ── Autofill Overrides ──────────────────────────────────────────── */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #FAFBFC inset !important;
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #384553 !important;
}

/* Focused autofill */
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 30px #FFF inset !important;
}

/* ── Spinner animation for buttons ───────────────────────────────── */
.l2u-spinner {
    animation: spin 0.8s linear infinite;
}

/* ── reCAPTCHA ───────────────────────────────────────────────────── */
#recaptcha_element {
    display: flex;
    justify-content: center;
    margin: 16px 0;
}

#tooltip {
    visibility: hidden;
    color: #fff;
    background-color: #D32F2F;
    min-width: 250px;
    border-radius: 10px;
    padding: 12px 16px;
    text-align: center;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
    z-index: 100;
    font-size: 14px;
}

#tooltip.show-tooltip {
    visibility: visible;
    animation: fadeUp 0.3s ease-out;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media only screen and (max-width: 768px) {
    .l2u-panel-left {
        display: none;
    }

    .l2u-panel-right {
        padding: 40px 24px;
    }

    .l2u-redirect-layout {
        padding: 24px;
    }

    .l2u-redirect-card {
        padding: 36px 28px 32px;
    }
}

@media only screen and (min-width: 769px) {
    .l2u-mobile-logo {
        display: none;
    }
}

/* ── Two-Factor / Other Legacy Pages ─────────────────────────────── */
.l2u-centered-layout {
    max-width: 450px;
    margin: 0 auto;
    padding: 40px 20px;
}

.l2u-centered-layout .page-header-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

/* Keep existing form-control styles for 2FA pages */
.l2u-centered-layout .form-control {
    width: 100%;
    padding: 13px 14px;
    font-size: 15px;
    font-family: inherit;
    border: 1.5px solid #DBDBDB;
    border-radius: 10px;
    outline: none;
    background: #FAFBFC;
    color: #384553;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.l2u-centered-layout .form-control:focus {
    border-color: #2B93FF;
    box-shadow: 0 0 0 3px rgba(43,147,255,0.1);
    background: #FFF;
}

.l2u-centered-layout .form-control::placeholder {
    color: #9CA3AF;
}

/* QR code and 2FA styles */
.qr-code-container {
    padding: 10px 0;
    margin-top: 20px;
}

.qr-code-container img {
    margin: 0 auto;
}

.qr-code-clipboard {
    background-color: #F4F7FB;
    margin-top: 10px;
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
}

.qr-code-clipboard span {
    color: #384553;
    font-size: 16px;
}

.verification-form {
    margin-bottom: 60px;
}

.verification-form label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
    color: #384553;
}

.verification-btn {
    margin: 0 auto;
    width: 100%;
    background-color: #2B93FF;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    max-width: initial;
}

.verification-btn:hover {
    background-color: #1C3E61;
}

.white-link {
    color: #2B93FF;
}

.white-link:hover {
    color: #1C3E61;
}

.two-factor-instruction li {
    margin-bottom: 10px;
    color: #737474;
}

.recovery-code-container {
    max-width: 450px;
    margin: 0 auto;
    padding: 20px 15px;
}

.two-column-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.input-box-control {
    border: 1.5px solid #DBDBDB;
    padding: 6px 20px;
    border-radius: 10px;
}

.alert-custom {
    background: #FFF0EE;
    border: 1px solid #FECACA;
    color: #D32F2F;
    border-radius: 10px;
    padding: 12px 16px;
}

.alert-custom ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.alert-message {
    padding: 10px 20px;
    margin-bottom: 10px;
}

.redirect-btn {
    display: inline-block;
    background-color: #2B93FF;
    color: #fff;
    padding: 12px 24px;
    margin-top: 20px;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
}

.redirect-btn:hover {
    background-color: #1C3E61;
    color: #fff;
    text-decoration: none;
}

.regular-btn {
    margin-top: 20px;
    padding: 12px 20px;
    background-color: #F4F7FB;
    width: 100%;
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

.regular-btn:hover {
    background-color: #EAF2FB;
}

.regular-btn span {
    color: #384553;
}

.regular-btn > div {
    font-size: 14px;
    font-weight: 400;
    color: #737474;
}

.relative-btn svg {
    position: relative;
    left: 0;
    top: 4px;
}

.relative-btn span {
    position: relative;
    top: -2px;
    font-size: 16px;
}

.logged-out a {
    color: #2B93FF;
    text-decoration: none;
}

#two-fa-login {
    max-width: 300px;
}

.two-fa-logo {
    max-width: 150px;
}

/* ── Confirm Code Inputs ────────────────────────────────────────── */
.l2u-code-input-group {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.l2u-code-input {
    width: 48px;
    height: 56px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    font-family: inherit;
    border: 1.5px solid #DBDBDB;
    border-radius: 10px;
    outline: none;
    background: #FAFBFC;
    color: #384553;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.l2u-code-input:focus {
    border-color: #2B93FF;
    box-shadow: 0 0 0 3px rgba(43,147,255,0.1);
}

/* ── Confirm Code Page Layout Helpers ───────────────────────────── */
.l2u-text-left {
    text-align: left;
}

.l2u-text-center {
    text-align: center;
}

.l2u-confirm-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(43,147,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.l2u-confirm-title {
    font-size: 22px;
    font-weight: 700;
    color: #1C3E61;
    margin-bottom: 8px;
}

.l2u-confirm-subtitle {
    font-size: 14px;
    color: #737474;
    line-height: 1.6;
    margin-bottom: 24px;
}

.l2u-resend-link {
    text-align: center;
    margin-bottom: 20px;
}

.l2u-resend-link a {
    font-size: 14px;
    color: #2B93FF;
    font-weight: 500;
}

.l2u-resend-success {
    display: none;
    background: rgba(5,150,105,0.08);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #059669;
    text-align: center;
}

/* ── Route Path SVG Animation Classes ───────────────────────────── */
.route-dash-12 {
    animation: dash 12s linear infinite;
}

.route-dash-15 {
    animation: dash 15s linear infinite;
}

.route-dash-18 {
    animation: dash 18s linear infinite;
}

.route-pulse {
    animation: pulse 3s ease-in-out infinite;
}

.route-pulse-1s {
    animation: pulse 3s ease-in-out 1s infinite;
}

.route-pulse-2s {
    animation: pulse 3s ease-in-out 2s infinite;
}

.route-pulse-05s {
    animation: pulse 3s ease-in-out 0.5s infinite;
}

.route-pulse-15s {
    animation: pulse 3s ease-in-out 1.5s infinite;
}

.spinner-ring-svg {
    position: absolute;
}

.spinner-ring-circle {
    transform-origin: center;
    animation: spin 1.2s linear infinite;
}

/* ── Button Loading State ───────────────────────────────────────── */
.l2u-btn-loading {
    background: #1C3E61;
    cursor: default;
    pointer-events: none;
}

.l2u-btn-loading .btn-label,
.l2u-btn-loading .btn-arrow {
    display: none;
}

.l2u-btn-loading .btn-spinner {
    display: inline-flex;
}

.l2u-btn-primary .btn-spinner {
    display: none;
    line-height: 0;
}

.l2u-btn-primary .btn-spinner svg {
    animation: spin 0.8s linear infinite;
}

/* Consent page */
.page-consent .client-logo img {
    width: 80px;
    height: 80px;
}

.page-consent .consent-buttons {
    margin-top: 25px;
}
