/* ═══════════════════════════════════════════════════════════════
   LOGIN PAGE — COMPLETE STANDALONE MODULE
   Covers: Login, ForgotPassword, ResetPassword
   Theme: Indigo/Violet gradient system with CSS var fallbacks
   ═══════════════════════════════════════════════════════════════ */

/* ── Container & Background ─────────────────────────────────── */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Hardcode: site.css --bg (#fafafa) ile karışmaması için sabit renk */
    background: #f0f2ff;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.login-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 50% at 18% 65%, rgba(99,102,241,0.13) 0%, transparent 70%),
        radial-gradient(ellipse 55% 45% at 82% 22%, rgba(139,92,246,0.09) 0%, transparent 70%),
        radial-gradient(ellipse 40% 35% at 50% 50%, rgba(99,102,241,0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Dark theme override */
[data-theme="dark"] .login-container,
[data-theme="noir"] .login-container,
[data-theme="midnight"] .login-container {
    background: var(--bg, #0a0a0a);
}

[data-theme="dark"] .login-container::before,
[data-theme="noir"] .login-container::before,
[data-theme="midnight"] .login-container::before {
    background:
        radial-gradient(ellipse 65% 50% at 18% 65%, rgba(99,102,241,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 55% 45% at 82% 22%, rgba(139,92,246,0.12) 0%, transparent 70%);
}

/* ── Card────────── */
.login-card {
    background: #ffffff;
    border: 1.5px solid rgba(99, 102, 241, 0.22);
    border-radius: 22px;
    padding: 44px 40px 36px;
    width: 100%;
    max-width: 440px;
    box-shadow:
        0 8px 32px rgba(99, 102, 241, 0.14),
        0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    transition: box-shadow 0.3s ease;
}

[data-theme="dark"] .login-card,
[data-theme="noir"] .login-card {
    background: var(--surface, #1e1e2e);
    border-color: rgba(99, 102, 241, 0.25);
    box-shadow:
        0 4px 32px rgba(0, 0, 0, 0.35),
        0 1px 4px rgba(99, 102, 241, 0.15);
}

/* ── Header──────── */
.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-logo-wrap {
    width: 76px;
    height: 76px;
    border-radius: 20px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 22px rgba(99, 102, 241, 0.36);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-logo-wrap:hover {
    transform: scale(1.04) translateY(-1px);
    box-shadow: 0 10px 28px rgba(99, 102, 241, 0.44);
}

/* Fallback: when logo is an <img> */
.login-logo {
    width: 76px;
    height: 76px;
    border-radius: 20px;
    margin: 0 auto 20px;
    display: block;
    object-fit: contain;
    box-shadow: 0 6px 22px rgba(99, 102, 241, 0.24);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.login-header h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text, #111827);
    margin: 0 0 7px 0;
    letter-spacing: -0.4px;
}

.login-header p {
    font-size: 14px;
    color: var(--text-secondary, #6b7280);
    margin: 0;
    line-height: 1.5;
}

/* ── Error & Success Messages ────────────────────────────────── */
.login-error {
    background: linear-gradient(135deg,
        color-mix(in srgb, var(--danger, #dc2626) 8%, transparent),
        color-mix(in srgb, var(--danger, #dc2626) 5%, transparent)
    );
    border: 1px solid color-mix(in srgb, var(--danger, #dc2626) 30%, transparent);
    color: var(--danger, #dc2626);
    padding: 11px 14px;
    border-radius: 12px;
    margin-bottom: 22px;
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

/* Fallback for older browsers without color-mix */
@supports not (color: color-mix(in srgb, red 10%, transparent)) {
    .login-error {
        background: rgba(220, 38, 38, 0.07);
        border: 1px solid rgba(220, 38, 38, 0.30);
    }
}

.login-success {
    background: color-mix(in srgb, var(--success, #16a34a) 8%, transparent);
    border: 1px solid color-mix(in srgb, var(--success, #16a34a) 28%, transparent);
    color: var(--success, #16a34a);
    padding: 11px 14px;
    border-radius: 12px;
    margin-bottom: 22px;
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

@supports not (color: color-mix(in srgb, green 10%, transparent)) {
    .login-success {
        background: rgba(22, 163, 74, 0.08);
        border: 1px solid rgba(22, 163, 74, 0.28);
    }
}

/* ── Form────────── */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.login-form .form-group {
    margin-bottom: 18px;
}

.login-form .form-group:last-of-type {
    margin-bottom: 0;
}

.login-form label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text, #374151);
    margin-bottom: 7px;
    letter-spacing: 0.01em;
}

/* ── Input Wrapper with Icons ────────────────────────────────── */
.login-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.login-input-wrap input {
    width: 100%;
    padding: 12px 44px !important;
    border: 1.5px solid var(--border, #e5e7eb);
    border-radius: 12px;
    background: var(--bg, #fafafa);
    color: var(--text, #111827);
    font-size: 15px;
    font-weight: 400;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.login-input-wrap input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3.5px rgba(99, 102, 241, 0.14);
    background: var(--surface, #fff);
}

.login-input-wrap input::placeholder {
    color: var(--text-muted, #9ca3af);
    font-weight: 400;
}

.login-input-wrap input:not(:placeholder-shown) {
    background: var(--surface, #fff);
    border-color: color-mix(in srgb, #6366f1 40%, var(--border, #e5e7eb));
}

@supports not (color: color-mix(in srgb, red 10%, transparent)) {
    .login-input-wrap input:not(:placeholder-shown) {
        border-color: #c7d2fe;
    }
}

[data-theme="dark"] .login-input-wrap input,
[data-theme="noir"] .login-input-wrap input {
    background: var(--bg, #0a0a0a);
    border-color: var(--border, #404040);
    color: var(--text, #fafafa);
}

[data-theme="dark"] .login-input-wrap input:focus,
[data-theme="noir"] .login-input-wrap input:focus {
    background: var(--surface, #1e1e2e);
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.20);
}

/* Input icon (left) */
.login-input-icon {
    position: absolute;
    left: 14px;
    width: 17px;
    height: 17px;
    color: var(--text-muted, #9ca3af);
    pointer-events: none;
    flex-shrink: 0;
    transition: color 0.2s ease;
    z-index: 1;
}

.login-input-wrap input:focus ~ .login-input-icon,
.login-input-wrap:focus-within .login-input-icon {
    color: #6366f1;
}

/* Password toggle button (right) */
.login-pwd-toggle {
    position: absolute;
    right: 11px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    border-radius: 7px;
    color: var(--text-muted, #9ca3af);
    display: flex;
    align-items: center;
    transition: background 0.15s, color 0.15s;
    z-index: 1;
}

.login-pwd-toggle:hover {
    background: var(--surface-hover, #f3f4f6);
    color: #6366f1;
}

.login-pwd-toggle svg {
    width: 17px;
    height: 17px;
}

/* ── Options Row (Remember Me + Forgot Password) ─────────────── */
.login-options-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 6px 0 20px;
}

/* Custom checkbox */
.login-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.login-remember input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.login-remember-box {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border, #d1d5db);
    border-radius: 5px;
    background: var(--surface, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.18s, border-color 0.18s;
}

.login-remember input:checked + .login-remember-box {
    background: #6366f1;
    border-color: #6366f1;
}

.login-remember input:checked + .login-remember-box::after {
    content: '';
    display: block;
    width: 5px;
    height: 9px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
}

.login-remember-label {
    font-size: 13.5px;
    color: var(--text-secondary, #6b7280);
}

/* Forgot password link */
.login-forgot {
    font-size: 13.5px;
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s, text-decoration 0.15s;
}

.login-forgot:hover {
    color: #4f46e5;
    text-decoration: underline;
}

/* ── Submit Button── */
.login-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    border-radius: 13px;
    color: #fff !important;
    font-size: 15.5px;
    font-weight: 600;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.38);
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
    position: relative;
    overflow: hidden;
    margin-top: 6px;
    letter-spacing: 0.01em;
}

.login-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.18),
        transparent
    );
    transition: left 0.55s ease;
}

.login-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.46);
}

.login-submit-btn:hover::before {
    left: 100%;
}

.login-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(99, 102, 241, 0.35);
}

.login-submit-btn:disabled,
.login-submit-btn.loading {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    pointer-events: none;
}

.login-btn-text { flex: 0 0 auto; }

.login-btn-arrow {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

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

.login-submit-btn.loading .login-btn-arrow {
    display: none;
}

.login-submit-btn.loading .login-btn-text::after {
    content: '...';
    animation: btnDots 1.2s ease infinite;
}

@keyframes btnDots {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

/* ── Remembered Badge ─────────────────────────────────────────── */
.login-saved-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--success, #16a34a);
    background: var(--success-light, #dcfce7);
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    vertical-align: middle;
    flex-shrink: 0;
}

.login-saved-badge.show { opacity: 1; }

/* ── Footer──────── */
.login-footer {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border, #f3f4f6);
    text-align: center;
}

.login-footer p {
    font-size: 12px;
    color: var(--text-muted, #9ca3af);
    margin: 4px 0 0;
}

.login-footer a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: color 0.15s;
}

.login-footer a:hover {
    color: #4f46e5;
    text-decoration: underline;
}

/* ── ForgotPassword: Password Options Section ────────────────── */
.password-options-section {
    background: var(--bg, #fafafa);
    border: 1.5px solid var(--border, #e5e7eb);
    border-radius: 14px;
    padding: 16px;
    margin: 16px 0;
}

.options-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text, #374151);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.option-group {
    margin-bottom: 10px;
    padding: 11px 13px;
    background: var(--surface, #fff);
    border: 1.5px solid var(--border, #e5e7eb);
    border-radius: 11px;
    transition: border-color 0.15s ease, background 0.15s ease;
    cursor: pointer;
}

.option-group:hover {
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.08);
}

.option-group:last-child {
    margin-bottom: 0;
}

/* Highlight the selected option */
.option-group:has(input[type="radio"]:checked) {
    border-color: #6366f1;
    background: color-mix(in srgb, #6366f1 5%, var(--surface, #fff));
}

@supports not (selector(:has(*))) {
    .option-group.selected {
        border-color: #6366f1;
        background: rgba(99, 102, 241, 0.04);
    }
}

.option-label {
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13.5px;
    color: var(--text, #374151);
}

.option-label input[type="radio"] {
    width: 17px;
    height: 17px;
    accent-color: #6366f1;
    cursor: pointer;
    flex-shrink: 0;
}

.option-text {
    font-size: 13.5px;
}

.option-desc {
    display: block;
    margin-top: 4px;
    margin-left: 26px;
    font-size: 11.5px;
    color: var(--text-muted, #9ca3af);
    line-height: 1.4;
}

/* Custom password input inside option */
.custom-password-group {
    margin-top: 12px;
}

.custom-password-group input {
    width: 100%;
    padding: 10px 13px;
    border: 1.5px solid var(--border, #e5e7eb);
    border-radius: 9px;
    font-size: 14px;
    background: var(--bg, #fafafa);
    color: var(--text, #111827);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.custom-password-group input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
    background: var(--surface, #fff);
}

/* Strength indicator */
.password-strength-indicator {
    margin-top: 9px;
}

.strength-bar {
    width: 100%;
    height: 4px;
    background: var(--border, #e5e7eb);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 5px;
}

.strength-fill {
    height: 100%;
    width: 0%;
    background: #6366f1;
    border-radius: 2px;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.strength-text {
    font-size: 11.5px;
    color: var(--text-muted, #9ca3af);
    font-weight: 500;
}

/* Generated password display */
.generated-password-group {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.generated-password {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 13px;
    background: var(--bg, #f0f0ff);
    border: 1.5px solid rgba(99, 102, 241, 0.25);
    border-radius: 9px;
}

.password-value {
    font-family: 'Courier New', Courier, monospace;
    font-size: 13.5px;
    font-weight: 600;
    color: #6366f1;
    letter-spacing: 0.05em;
    flex: 1;
    word-break: break-all;
}

.copy-btn {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.25);
    color: #6366f1;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 7px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    white-space: nowrap;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: rgba(99, 102, 241, 0.18);
    border-color: rgba(99, 102, 241, 0.45);
}

/* ── Responsive──── */
@media (max-width: 768px) {
    .login-container { padding: 16px; }

    .login-card {
        padding: 36px 28px 28px;
        border-radius: 18px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .login-card {
        padding: 28px 20px 22px;
        border-radius: 16px;
    }

    .login-header h1 { font-size: 21px; }

    .login-logo-wrap,
    .login-logo { width: 64px; height: 64px; border-radius: 16px; }

    .login-options-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   WHATSAPP BİLDİRİM KUTUSU
   ForgotPassword sayfasında otomatik şifre üretilince görünür
   ═══════════════════════════════════════════════════════════════ */

.wa-notify-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: linear-gradient(135deg,
        rgba(37, 211, 102, 0.08) 0%,
        rgba(37, 211, 102, 0.04) 100%
    );
    border: 1.5px solid rgba(37, 211, 102, 0.32);
    border-radius: 14px;
    margin-bottom: 20px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wa-notify-box:hover {
    border-color: rgba(37, 211, 102, 0.55);
    box-shadow: 0 2px 12px rgba(37, 211, 102, 0.12);
}

.wa-notify-icon {
    width: 38px;
    height: 38px;
    background: #25d366;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.35);
}

.wa-notify-icon svg {
    width: 22px;
    height: 22px;
    color: #ffffff;
    fill: #ffffff;
}

.wa-notify-content {
    flex: 1;
    min-width: 0;
}

.wa-notify-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text, #111827);
    margin: 0 0 3px;
    line-height: 1.3;
}

.wa-notify-desc {
    font-size: 12.5px;
    color: var(--text-secondary, #6b7280);
    margin: 0 0 12px;
    line-height: 1.45;
}

/* WhatsApp Gönder Butonu */
.wa-send-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    background: #25d366;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 600;
    border-radius: 9px;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.35);
    white-space: nowrap;
}

.wa-send-btn svg {
    width: 17px;
    height: 17px;
    fill: #ffffff;
    flex-shrink: 0;
}

.wa-send-btn:hover {
    background: #1ebc5a;
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(37, 211, 102, 0.45);
}

.wa-send-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.30);
}

/* Gönderim sonrası geri bildirim durumu */
.wa-send-btn--sent {
    background: #15803d !important;
    box-shadow: 0 3px 10px rgba(21, 128, 61, 0.30) !important;
    transform: none !important;
    pointer-events: none;
}

/* Telefon numarası yok uyarısı */
.wa-no-phone-box {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 11px 14px;
    background: color-mix(in srgb, var(--warning, #ca8a04) 8%, transparent);
    border: 1.5px solid color-mix(in srgb, var(--warning, #ca8a04) 28%, transparent);
    border-radius: 12px;
    margin-bottom: 18px;
    font-size: 13px;
    color: var(--warning, #92400e);
    line-height: 1.45;
}

@supports not (color: color-mix(in srgb, red 10%, transparent)) {
    .wa-no-phone-box {
        background: rgba(202, 138, 4, 0.08);
        border-color: rgba(202, 138, 4, 0.28);
    }
}

/* Dark theme uyumu */
[data-theme="dark"] .wa-notify-box,
[data-theme="noir"] .wa-notify-box {
    background: linear-gradient(135deg,
        rgba(37, 211, 102, 0.10) 0%,
        rgba(37, 211, 102, 0.06) 100%
    );
    border-color: rgba(37, 211, 102, 0.28);
}

[data-theme="dark"] .wa-notify-title,
[data-theme="noir"] .wa-notify-title {
    color: var(--text, #fafafa);
}

/* ═══════════════════════════════════════════════════════════════
   RESET PASSWORD — Şifre güç, gereksinim, eşleşme stilleri
   Login tasarımıyla tam uyumlu
   ═══════════════════════════════════════════════════════════════ */

/* ── Şifre güç çubuğu ─────────────────────────────────────────── */
.rp-strength-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.rp-strength-bar {
    flex: 1;
    height: 5px;
    background: var(--border, #e5e7eb);
    border-radius: 3px;
    overflow: hidden;
}

.rp-strength-fill {
    height: 100%;
    width: 0%;
    border-radius: 3px;
    transition: width 0.3s ease, background 0.3s ease;
}

.rp-strength-label {
    font-size: 12px;
    font-weight: 600;
    min-width: 44px;
    text-align: right;
    transition: color 0.2s;
}

/* ── Gereksinim listesi ────────────────────────────────────────── */
.rp-reqs {
    list-style: none;
    margin: 10px 0 0;
    padding: 11px 14px;
    background: var(--bg, #fafafa);
    border: 1.5px solid var(--border, #e5e7eb);
    border-radius: 11px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rp-req {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 500;
    transition: color 0.18s ease;
}

.rp-req span {
    font-size: 13px;
    width: 14px;
    flex-shrink: 0;
    font-weight: 700;
}

.rp-req--fail { color: #ef4444; }
.rp-req--pass { color: #10b981; }

/* ── Şifre eşleşme göstergesi ────────────────────────────────── */
.rp-match {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 500;
    margin-top: 7px;
    padding: 6px 10px;
    border-radius: 8px;
    transition: color 0.15s, background 0.15s;
}

.rp-match svg { flex-shrink: 0; }

.rp-match--ok {
    color: #10b981;
    background: rgba(16, 185, 129, 0.07);
}

.rp-match--fail {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.07);
}

/* ── Yönlendirme sayacı (başarı sonrası) ──────────────────────── */
.rp-redirect-bar {
    margin: 14px 0 0;
}

.rp-redirect-track {
    width: 100%;
    height: 4px;
    background: var(--border, #e5e7eb);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 8px;
}

.rp-redirect-fill {
    height: 100%;
    width: 0%;
    background: #6366f1;
    border-radius: 2px;
}

.rp-redirect-text {
    font-size: 12px;
    color: var(--text-muted, #9ca3af);
    margin: 0;
    text-align: center;
}
