/* ═══════════════════════════════════════════════════════════════
   LOGIN PAGE — DEDICATED STYLESHEET
   COA Kerala | Bootstrap 5 + Tailwind CSS 4 + Custom CSS
═══════════════════════════════════════════════════════════════ */

/* Override global body for login page */
body.login-page-body {
    background: linear-gradient(135deg, #f0eefb 0%, #fdfbff 45%, #fff0f0 100%);
    min-height: 100vh;
    display: block;
    flex-direction: unset;
}

body.login-page-body::before,
body.login-page-body::after {
    display: none;
}

/* ── Keyframes ─────────────────────────────────────────────── */
@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(28px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatShape {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-22px) rotate(3deg);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.92);
        opacity: 0.6;
    }

    70% {
        transform: scale(1.08);
        opacity: 0;
    }

    100% {
        transform: scale(0.92);
        opacity: 0;
    }
}

@keyframes spinOnce {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -468px 0;
    }

    100% {
        background-position: 468px 0;
    }
}

@keyframes dotBounce {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes panelFlip {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    40% {
        opacity: 0;
        transform: translateX(-16px);
    }

    60% {
        opacity: 0;
        transform: translateX(16px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ── Login Wrapper ─────────────────────────────────────────── */
.login-page-root {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0eefb 0%, #fdfbff 45%, #fff0f0 100%);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

/* Animated blobs */
.lp-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(72px);
    pointer-events: none;
    z-index: 0;
    animation: floatShape 8s ease-in-out infinite;
}

.lp-blob-1 {
    width: 480px;
    height: 480px;
    background: rgba(22, 16, 106, 0.07);
    top: -140px;
    left: -140px;
    animation-delay: 0s;
}

.lp-blob-2 {
    width: 360px;
    height: 360px;
    background: rgba(188, 6, 16, 0.06);
    bottom: -100px;
    right: -100px;
    animation-delay: -4s;
}

.lp-blob-3 {
    width: 220px;
    height: 220px;
    background: rgba(232, 186, 55, 0.12);
    top: 50%;
    left: 60%;
    animation-delay: -2s;
}

/* ── Login Card ─────────────────────────────────────────────── */
.login-card-wrap {
    width: 100%;
    max-width: 460px;
    position: relative;
    z-index: 1;
    animation: floatUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.login-glass-card {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.75);
    border-radius: 24px;
    box-shadow:
        0 4px 24px rgba(22, 16, 106, 0.09),
        0 1px 4px rgba(22, 16, 106, 0.05);
    overflow: hidden;
}

/* ── Gradient Top Bar ───────────────────────────────────────── */
.login-top-bar {
    height: 5px;
    background: linear-gradient(90deg, var(--primary, #16106a) 0%, #4338ca 50%, var(--secondary, #bc0610) 100%);
}

/* ── Logo + Header ──────────────────────────────────────────── */
.login-logo-wrap img {
    max-width: 150px;
    height: auto;
    transition: transform 0.4s ease;
}

.login-logo-wrap img:hover {
    transform: scale(1.04);
}

.login-title {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--dark, #1a1a2e);
    line-height: 1.2;
}

.login-subtitle {
    font-size: 0.85rem;
    color: #8b8ba0;
    margin-top: 3px;
}

/* ── Method Toggle Tabs ─────────────────────────────────────── */
.login-method-tabs {
    display: flex;
    gap: 0;
    background: rgba(22, 16, 106, 0.06);
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 1.5rem;
}

.login-tab-btn {
    flex: 1;
    border: none;
    background: transparent;
    border-radius: 9px;
    padding: 9px 12px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
}

.login-tab-btn.active {
    background: #fff;
    color: var(--primary, #16106a);
    box-shadow: 0 2px 8px rgba(22, 16, 106, 0.14);
}

.login-tab-btn i {
    font-size: 1rem;
}

/* ── Panel Transition ───────────────────────────────────────── */
.login-panel {
    display: none;
}

.login-panel.active {
    display: block;
    animation: slideInRight 0.36s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.login-panel.slide-left {
    animation: slideInLeft 0.36s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* ── Input Groups ───────────────────────────────────────────── */
.lp-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.lp-input-wrap {
    position: relative;
    border-radius: 12px;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    display: flex;
    align-items: center;
    transition: border-color 0.22s, box-shadow 0.22s;
    overflow: hidden;
}

.lp-input-wrap:focus-within {
    border-color: var(--primary, #16106a);
    box-shadow: 0 0 0 3px rgba(22, 16, 106, 0.1);
}

.lp-icon {
    padding: 0 12px;
    color: #aaa;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: color 0.22s;
}

.lp-input-wrap:focus-within .lp-icon {
    color: var(--primary, #16106a);
}

.lp-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 13px 12px 13px 0;
    font-size: 0.95rem;
    color: #1a1a2e;
    font-family: var(--font-body, 'DM Sans', sans-serif);
    caret-color: var(--primary, #16106a);
}

.lp-input::placeholder {
    color: #bbb;
}

/* Phone prefix */
.lp-phone-prefix {
    padding: 0 10px 0 12px;
    font-size: 0.87rem;
    font-weight: 700;
    color: #555;
    border-right: 1.5px solid #e5e7eb;
    margin-right: 4px;
    white-space: nowrap;
    align-self: stretch;
    display: flex;
    align-items: center;
}

/* Toggle password btn */
.lp-toggle-pw {
    border: none;
    background: transparent;
    padding: 0 12px;
    color: #bbb;
    font-size: 1.05rem;
    cursor: pointer;
    transition: color 0.2s;
    flex-shrink: 0;
}

.lp-toggle-pw:hover {
    color: var(--primary, #16106a);
}

/* ── OTP Input Group ────────────────────────────────────────── */
.otp-boxes {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 0.5rem 0;
}

.otp-box {
    width: 52px;
    height: 56px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    text-align: center;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark, #1a1a2e);
    background: #fff;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    font-family: var(--font-display, 'DM Sans', sans-serif);
    caret-color: var(--primary, #16106a);
    -webkit-appearance: none;
    appearance: none;
}

.otp-box:focus {
    border-color: var(--primary, #16106a);
    box-shadow: 0 0 0 3px rgba(22, 16, 106, 0.12), 0 4px 12px rgba(22, 16, 106, 0.1);
    transform: translateY(-3px) scale(1.05);
}

.otp-box.filled {
    border-color: var(--success, #68bc3a);
    background: rgba(104, 188, 58, 0.05);
}

.otp-box.error {
    border-color: var(--secondary, #bc0610);
    animation: shake 0.4s ease;
    background: rgba(188, 6, 16, 0.04);
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-5px);
    }

    40% {
        transform: translateX(5px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }
}

/* OTP Step info bar */
.otp-step-bar {
    background: rgba(22, 16, 106, 0.04);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.2rem;
}

.otp-step-icon {
    width: 36px;
    height: 36px;
    background: var(--primary, #16106a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    flex-shrink: 0;
    position: relative;
}

.otp-step-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid rgba(22, 16, 106, 0.25);
    animation: pulse-ring 2s ease-out infinite;
}

/* Resend timer */
.otp-resend-wrap {
    text-align: center;
}

.otp-timer-text {
    font-size: 0.82rem;
    color: #999;
}

.otp-timer-count {
    font-weight: 700;
    color: var(--secondary, #bc0610);
}

.otp-resend-btn {
    border: none;
    background: none;
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--primary, #16106a);
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    display: none;
    transition: color 0.2s;
}

.otp-resend-btn:hover {
    color: var(--primary-hover, #221996);
}

.otp-resend-btn.visible {
    display: inline;
}

/* ── Primary Button ─────────────────────────────────────────── */
.btn-login-primary {
    width: 100%;
    padding: 13px 20px;
    background: linear-gradient(135deg, var(--primary, #16106a) 0%, #2d25b5 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
    font-family: var(--font-body, 'DM Sans', sans-serif);
}

.btn-login-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.25s;
}

.btn-login-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(22, 16, 106, 0.35);
}

.btn-login-primary:hover::before {
    opacity: 1;
}

.btn-login-primary:active {
    transform: translateY(0);
}

/* specific icon animations */
.btn-login-primary .ri-refresh-line {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
}

.btn-login-primary:hover .ri-refresh-line {
    transform: rotate(180deg) scale(1.15);
}

.btn-login-primary .ri-mail-send-line {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.btn-login-primary:hover .ri-mail-send-line {
    transform: translateY(-3px) translateX(3px) scale(1.1) rotate(5deg);
}

.btn-login-primary .ri-check-line {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.4s;
    display: inline-block;
}

.btn-login-primary:hover .ri-check-line {
    transform: scale(1.2) translateX(2px);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.6));
}

.btn-login-primary .ri-arrow-left-line {
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn-login-primary:hover .ri-arrow-left-line {
    transform: translateX(-4px);
}

.btn-login-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Send OTP secondary button */
.btn-send-otp {
    padding: 11px 18px;
    background: var(--primary, #16106a);
    color: #fff;
    border: none;
    border-radius: 0 10px 10px 0;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.22s;
    font-family: var(--font-body, 'DM Sans', sans-serif);
    flex-shrink: 0;
}

.btn-send-otp:hover {
    background: var(--primary-hover, #221996);
}

.btn-send-otp:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ── Loader Dots ────────────────────────────────────────────── */
.loader-dots {
    display: inline-flex;
    gap: 5px;
    align-items: center;
}

.loader-dots span {
    width: 7px;
    height: 7px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    animation: dotBounce 1.4s ease-in-out infinite;
}

.loader-dots span:nth-child(2) {
    animation-delay: 0.16s;
}

.loader-dots span:nth-child(3) {
    animation-delay: 0.32s;
}

/* ── Checkbox ───────────────────────────────────────────────── */
.lp-check-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lp-check {
    width: 17px;
    height: 17px;
    accent-color: var(--primary, #16106a);
    cursor: pointer;
    border-radius: 4px;
}

.lp-check-label {
    font-size: 0.83rem;
    color: #777;
    cursor: pointer;
    user-select: none;
}

/* ── Divider ────────────────────────────────────────────────── */
.lp-divider {
    position: relative;
    text-align: center;
    margin: 1.25rem 0;
}

.lp-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ebebf0;
}

.lp-divider-text {
    position: relative;
    background: rgba(255, 255, 255, 0.82);
    padding: 0 12px;
    font-size: 0.75rem;
    color: #bbb;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

/* ── Trust Badge / Counter ──────────────────────────────────── */
.trust-badge {
    background: rgba(104, 188, 58, 0.08);
    border: 1px solid rgba(104, 188, 58, 0.2);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
}

.trust-badge-icon {
    width: 32px;
    height: 32px;
    background: rgba(104, 188, 58, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: #468a22;
    flex-shrink: 0;
}

.trust-badge-text {
    font-size: 0.8rem;
    color: #555;
}

.trust-counter {
    font-weight: 800;
    font-size: 1rem;
    color: var(--primary, #16106a);
    font-family: var(--font-display, 'DM Sans', sans-serif);
}

/* ── Stat Counters Row ──────────────────────────────────────── */
.login-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(22, 16, 106, 0.06);
}

.login-stat-item {
    text-align: center;
    padding: 10px 8px;
    background: rgba(22, 16, 106, 0.03);
    border-radius: 12px;
    transition: all 0.25s;
}

.login-stat-item:hover {
    background: rgba(22, 16, 106, 0.07);
    transform: translateY(-2px);
}

.login-stat-num {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary, #16106a);
    font-family: var(--font-display, 'DM Sans', sans-serif);
    line-height: 1;
}

.login-stat-label {
    font-size: 0.68rem;
    color: #aaa;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 3px;
    display: block;
}

/* ── Forgot Link ────────────────────────────────────────────── */
.lp-forgot {
    font-size: 0.83rem;
    color: var(--primary, #16106a);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s, text-decoration 0.2s;
}

.lp-forgot:hover {
    color: var(--secondary, #bc0610);
    text-decoration: underline;
}

/* ── Step Indicator (OTP Flow) ─────────────────────────────── */
.lp-step-indicator {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.lp-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.lp-step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #bbb;
    transition: all 0.3s;
}

.lp-step.done .lp-step-circle {
    background: var(--success, #68bc3a);
    border-color: var(--success, #68bc3a);
    color: #fff;
}

.lp-step.active .lp-step-circle {
    background: var(--primary, #16106a);
    border-color: var(--primary, #16106a);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(22, 16, 106, 0.12);
}

.lp-step-line {
    width: 50px;
    height: 2px;
    background: #e5e7eb;
    margin: 0 6px;
    margin-bottom: 20px;
    transition: background 0.3s;
    flex-shrink: 0;
}

.lp-step-line.done {
    background: var(--success, #68bc3a);
}

.lp-step-text {
    font-size: 0.65rem;
    color: #ccc;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lp-step.active .lp-step-text,
.lp-step.done .lp-step-text {
    color: var(--primary, #16106a);
}

/* ── Success / Verified state ─────────────────────────────── */
.otp-verified-anim {
    display: none;
    text-align: center;
    padding: 1.5rem 0;
    animation: floatUp 0.4s ease both;
}

.otp-verified-anim.show {
    display: block;
}

.verified-icon {
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, #68bc3a 0%, #4ade80 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    margin: 0 auto 12px;
    animation: spinOnce 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Alert Messages ─────────────────────────────────────────── */
.lp-alert {
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.82rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: floatUp 0.3s ease both;
}

.lp-alert-error {
    background: rgba(188, 6, 16, 0.07);
    color: #b91c1c;
    border: 1px solid rgba(188, 6, 16, 0.15);
}

.lp-alert-success {
    background: rgba(104, 188, 58, 0.08);
    color: #2d7a0a;
    border: 1px solid rgba(104, 188, 58, 0.2);
}

/* ── Footer ─────────────────────────────────────────────────── */
.login-footer {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 0.8rem;
    color: #bbb;
}

/* ── Floating badge animation (counter) ─────────────────────── */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.count-anim {
    animation: countUp 0.3s ease both;
}

/* ── Responsive Tweaks ──────────────────────────────────────── */




/* ── Standalone Action Success ────────────────────────────────── */
.action-success-wrap {
    text-align: center;
    /* padding: 1.5rem 0; */
    animation: floatUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.action-success-icon {
    width: 76px;
    height: 76px;
    font-size: 2.8rem;
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0.05);
    animation: successPulse 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes successPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.15);
        transform: scale(0.95);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(34, 197, 94, 0);
        transform: scale(1);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
        transform: scale(0.95);
    }
}

.action-success-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--success);
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.action-success-desc {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    /* padding-bottom: 0.5rem; */
}

.btn-pill {
    border-radius: 50rem !important;
    width: max-content !important;
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    padding: 0.65rem 2.5rem !important;
}

/* ==========================================================================
   Membership Wizard Specific Utilities
   ========================================================================== */

/* Step Header */
.step-title-text {
    color: var(--primary);
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.step-count-badge {
    font-size: 0.75rem;
    background: rgba(0, 0, 0, 0.04);
    padding: 4px 10px;
    border-radius: 20px;
}

.progress-track {
    height: 6px;
    border-radius: 10px;
    background-color: rgba(22, 16, 106, 0.1);
}

.progress-fill {
    background-color: var(--primary);
    border-radius: 10px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Form Elements */
.form-back-btn {
    font-size: 0.85rem;
    cursor: pointer;
}

.btn-link-sm {
    font-size: 0.83rem;
    cursor: pointer;
}

/* Aadhar Section */
.aadhar-subtitle {
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.aadhar-input-wrap {
    background: #fff;
    border: 1px solid #ddd;
}

.aadhar-icon {
    color: #68bc3a;
}

.aadhar-input {
    letter-spacing: 2px;
    text-align: center;
    font-weight: bold;
}

/* OTP Section */
.otp-title-text {
    font-size: 0.82rem;
    font-weight: 600;
    color: #333;
}

.otp-subtitle-text {
    font-size: 0.75rem;
    color: #aaa;
}

/* Verification Card */
.data-card-wrap {
    background: rgba(104, 188, 58, 0.05);
    border: 1px solid rgba(104, 188, 58, 0.3);
}

.data-card-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.data-card-avatar-icon {
    font-size: 2.5rem;
    color: #ccc;
}

.data-card-footer {
    font-size: 0.8rem;
    color: #555;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Broadband Skip Block */
.broadband-skip-wrap {
    background: #f8f9fa;
    border: 1px solid #eaeaea;
}

.broadband-checkbox {
    width: 1.2rem;
    height: 1.2rem;
    cursor: pointer;
}

.broadband-checkbox-label {
    cursor: pointer;
    font-size: 0.9rem;
}

.broadband-help-text {
    font-size: 0.75rem;
    color: #6c757d;
    margin-bottom: 0;
    margin-top: 0.25rem;
}

/* Review Section & Shares */
.section-header-title {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.review-card {
    background: rgba(22, 16, 106, 0.03);
    border: 1px solid rgba(22, 16, 106, 0.1);
}

.submit-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 15px;
}

/* Footer Links */
.login-footer-link {
    font-size: 0.83rem;
    color: #aaa;
}

.login-footer-link-a {
    color: var(--primary);
}

.anim-delay-0 {
    animation-delay: 0ms;
}

.anim-delay-50 {
    animation-delay: 50ms;
}

.anim-delay-100 {
    animation-delay: 100ms;
}

.anim-delay-150 {
    animation-delay: 150ms;
}

.anim-delay-200 {
    animation-delay: 200ms;
}

.anim-delay-250 {
    animation-delay: 250ms;
}

.privacy-link {
    color: #ccc;
}

.shares-tab {
    text-transform: initial;
}