/**
 * RankSmart Auth Page Styles (Login + Registration)
 * Shared two-panel modern design for /login and /register
 * Namespaced under .auth-page to avoid conflicts
 * Multi-step flow for registration: Register → Email Confirm → URL → Keywords → Payment → Thank You
 */

/* ========== Base ========== */
.auth-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* ========== Layout Wrapper (shared) ========== */
.auth-page .login-wrapper,
.auth-page .register-wrapper {
    display: flex;
    min-height: 100vh;
}

/* ========== Left Side - Branding (shared) ========== */
.auth-page .login-branding,
.auth-page .register-branding {
    flex: 0 0 48%;
    background-color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

/* Decorative Elements */
.auth-page .login-branding::before,
.auth-page .register-branding::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: rgba(14, 136, 175, 0.1);
    border-radius: 50%;
    pointer-events: none;
    animation: ulp-pulse 8s ease-in-out infinite;
}

.auth-page .login-branding::after,
.auth-page .register-branding::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(14, 136, 175, 0.06);
    border-radius: 50%;
    pointer-events: none;
    animation: ulp-pulse 10s ease-in-out infinite reverse;
}

@keyframes ulp-pulse {

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

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.auth-page .branding-content {
    max-width: 500px;
    position: relative;
    z-index: 1;
}

.auth-page .branding-logo {
    margin-bottom: 56px;
}

.auth-page .branding-logo img {
    height: 52px;
    width: auto;
    max-width: 100%;
}

.auth-page .branding-text {
    margin-bottom: 56px;
}

.auth-page .branding-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.auth-page .branding-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    max-width: 420px;
}

.auth-page .branding-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 56px;
}

.auth-page .feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    transition: transform 0.3s ease;
}

.auth-page .feature-item:hover {
    transform: translateX(6px);
}

.auth-page .feature-icon {
    width: 52px;
    height: 52px;
    background: rgba(14, 136, 175, 0.12);
    border: 1px solid rgba(14, 136, 175, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.auth-page .feature-item:hover .feature-icon {
    background: rgba(14, 136, 175, 0.2);
    border-color: rgba(14, 136, 175, 0.3);
}

.auth-page .feature-icon .iconify {
    font-size: 24px;
    color: #0e88af;
}

.auth-page .feature-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.auth-page .branding-footer {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-page .branding-footer p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ========== Right Side - Form Area (shared) ========== */
.auth-page .login-form-container,
.auth-page .register-form-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
    background-color: #ffffff;
    position: relative;
}

.auth-page .register-form-container {
    overflow-y: auto;
}

/* Subtle pattern overlay */
.auth-page .login-form-container::before,
.auth-page .register-form-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(148, 163, 184, 0.06) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.auth-page .login-form-wrapper {
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 1;
}

.auth-page .register-form-wrapper {
    width: 100%;
    max-width: 440px;
    position: relative;
    z-index: 1;
}

/* Mobile logo (shared) */
.auth-page .mobile-logo {
    display: none;
    margin-bottom: 48px;
    text-align: center;
}

.auth-page .mobile-logo img {
    height: 44px;
    width: auto;
    max-width: 100%;
}

/* ========== Flash Messages (login) ========== */
.auth-page .alert {
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 24px;
    font-size: 0.875rem;
    border: 1px solid;
}

.auth-page .alert p {
    margin-bottom: 0;
}

/* ========== Step Indicator (register) ========== */
.auth-page .step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.auth-page .step-dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #94a3b8;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.auth-page .step-dot.active {
    background: #0e88af;
    border-color: #0e88af;
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(14, 136, 175, 0.15);
}

.auth-page .step-dot.completed {
    background: #10b981;
    border-color: #10b981;
    color: #ffffff;
}

.auth-page .step-dot.completed .step-number {
    display: none;
}

.auth-page .step-dot.completed .step-check {
    display: flex;
}

.auth-page .step-check {
    display: none;
    font-size: 16px;
}

.auth-page .step-line {
    width: 48px;
    height: 2px;
    background: #e2e8f0;
    transition: background 0.4s ease;
}

.auth-page .step-line.completed {
    background: #10b981;
}

/* ========== Steps Container ========== */
.auth-page .step-content {
    display: none;
    animation: ulp-fadeSlideIn 0.4s ease;
}

.auth-page .step-content.active {
    display: block;
}

/* ========== Form Header (shared) ========== */
.auth-page .form-header {
    margin-bottom: 36px;
    text-align: center;
    position: relative;
}

.auth-page .form-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.auth-page .form-header p {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
}

/* ========== Back Button (shared) ========== */
.auth-page .back-btn {
    position: absolute;
    top: 6px;
    left: -56px;
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #64748b;
}

.auth-page .back-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: translateX(-2px);
}

.auth-page .back-btn .iconify {
    font-size: 22px;
}

/* ========== Form Controls (shared) ========== */
.auth-page .login-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.auth-page .register-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.auth-page .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.auth-page .login-form .form-group,
.auth-page .register-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
}

.auth-page .login-form .form-group label,
.auth-page .register-form .form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    letter-spacing: -0.01em;
}

.auth-page .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-page .input-icon {
    position: absolute;
    left: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    pointer-events: none;
    transition: color 0.25s ease;
    z-index: 2;
}

.auth-page .input-icon .iconify {
    font-size: 22px;
}

/* Input styling - both plain input and Bootstrap .form-control */
.auth-page .input-wrapper input,
.auth-page .input-wrapper input.form-control {
    width: 100%;
    padding: 16px 18px 16px 54px;
    font-size: 0.9375rem;
    font-family: inherit;
    color: #1e293b;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    outline: none;
    transition: all 0.25s ease;
    height: auto;
}

.auth-page .input-wrapper input::placeholder,
.auth-page .input-wrapper input.form-control::placeholder {
    color: #94a3b8;
}

.auth-page .input-wrapper input:hover,
.auth-page .input-wrapper input.form-control:hover {
    border-color: #cbd5e1;
    background: #f1f5f9;
}

.auth-page .input-wrapper input:focus,
.auth-page .input-wrapper input.form-control:focus {
    background: #ffffff;
    border-color: #0e88af;
    box-shadow: 0 0 0 4px rgba(14, 136, 175, 0.12), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.auth-page .input-wrapper:has(input:focus) .input-icon {
    color: #0e88af;
}

/* Password Toggle (shared) */
.auth-page .toggle-password {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border-radius: 8px;
    z-index: 2;
}

.auth-page .toggle-password:hover {
    color: #64748b;
    background: rgba(100, 116, 139, 0.1);
}

.auth-page .toggle-password .iconify {
    font-size: 22px;
}

/* ========== Validation - Register style ========== */
.auth-page .error-message {
    font-size: 0.8125rem;
    color: #ef4444;
    min-height: 0;
    display: none;
    padding-left: 2px;
}

.auth-page .error-message.visible {
    display: block;
}

.auth-page .form-group.error .input-wrapper input {
    border-color: #ef4444;
    background: #fef2f2;
}

.auth-page .form-group.error .input-wrapper input:focus {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.auth-page .form-group.error .input-icon {
    color: #ef4444;
}

/* ========== Validation - Login / Laravel style ========== */
.auth-page .help-block {
    font-size: 0.8125rem;
    color: #ef4444;
    padding-left: 2px;
    margin-top: 4px;
}

.auth-page .has-error .input-wrapper input,
.auth-page .has-error .input-wrapper input.form-control {
    border-color: #ef4444;
    background: #fef2f2;
}

.auth-page .has-error .input-wrapper input:focus,
.auth-page .has-error .input-wrapper input.form-control:focus {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.auth-page .has-error .input-icon {
    color: #ef4444;
}

/* ========== Form Options - Login ========== */
.auth-page .form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -12px;
}

/* Custom Checkbox - Login */
.auth-page .checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.auth-page .checkbox-wrapper input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.auth-page .checkmark {
    width: 22px;
    height: 22px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.auth-page .checkbox-wrapper input[type="checkbox"]:checked+.checkmark {
    background: #0e88af;
    border-color: #0e88af;
}

.auth-page .checkbox-wrapper input[type="checkbox"]:checked+.checkmark::after {
    content: '';
    width: 6px;
    height: 11px;
    border: solid #ffffff;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.auth-page .checkbox-wrapper:hover .checkmark {
    border-color: #cbd5e1;
}

.auth-page .checkbox-label {
    font-size: 0.875rem;
    color: #475569;
    font-weight: 500;
}

.auth-page .forgot-link {
    font-size: 0.875rem;
    color: #0e88af;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.auth-page .forgot-link:hover {
    color: #0a6d8c;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Email hint (register) */
.auth-page .email-hint {
    font-size: 0.8125rem;
    color: #0e88af;
    text-align: center;
    margin-top: -8px;
}

/* Login link below register button */
.auth-page .login-link {
    text-align: center;
    margin-top: 28px;
    font-size: 0.9rem;
    color: #64748b;
}

.auth-page .login-link a {
    color: #0e88af;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.auth-page .login-link a:hover {
    color: #0a6d8c;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ========== Primary Buttons ========== */

/* Login button */
.auth-page .btn-login {
    width: 100%;
    padding: 16px 28px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%), #0e88af;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.25s ease;
    margin-top: 12px;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

.auth-page .btn-login::before {
    content: none;
}

.auth-page .btn-login:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%), #0a7a9d;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 136, 175, 0.35);
}

.auth-page .btn-login:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(14, 136, 175, 0.25);
}

.auth-page .btn-login:disabled,
.auth-page .btn-login.button-loading {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Login button loading spinner */
.auth-page .btn-login .loader {
    width: 20px;
    height: 20px;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: ulp-spin 0.7s linear infinite;
    position: static;
    margin: 0;
}

/* Register button */
.auth-page .btn-register {
    width: 100%;
    padding: 16px 28px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    color: #ffffff;
    background: #0e88af;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.25s ease;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

.auth-page .btn-register::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.auth-page .btn-register:hover {
    background: #0a7a9d;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 136, 175, 0.35);
}

.auth-page .btn-register:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(14, 136, 175, 0.25);
}

.auth-page .btn-register:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Danger button for payment */
.auth-page .btn-subscribe {
    width: 100%;
    padding: 16px 28px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    color: #ffffff;
    background: #dc2626;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.25s ease;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

.auth-page .btn-subscribe::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.auth-page .btn-subscribe:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.35);
}

.auth-page .btn-subscribe:active {
    transform: translateY(0);
}

/* Loading state (shared) */
.auth-page .btn-loader {
    display: none;
}

.auth-page .btn-loader .iconify {
    font-size: 22px;
    animation: ulp-spin 0.8s linear infinite;
}

@keyframes ulp-spin {
    from {
        transform: rotate(0deg);
    }

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

/* ========== OAuth Buttons (login) ========== */
.auth-page .oauth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 8px 0;
    color: #94a3b8;
    font-size: 0.8125rem;
}

.auth-page .oauth-divider::before,
.auth-page .oauth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.auth-page .oauth-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-page .btn-oauth {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 20px;
    font-size: 0.9375rem;
    font-weight: 500;
    font-family: inherit;
    color: #334155;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.auth-page .btn-oauth:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
    color: #1e293b;
    text-decoration: none;
}

.auth-page .btn-oauth img {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* ========== Captcha Container (login) ========== */
.auth-page .captcha-container {
    display: flex;
    justify-content: center;
    margin-top: -4px;
}

/* ========== Registration Link (login page) ========== */
.auth-page .registration-link {
    text-align: center;
    margin-top: 32px;
    font-size: 0.875rem;
    color: #64748b;
}

.auth-page .registration-link a {
    color: #0e88af;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.auth-page .registration-link a:hover {
    color: #0a6d8c;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ========== Email Confirmation Screen (register) ========== */
.auth-page .confirmation-content {
    text-align: center;
    padding: 16px 0;
}

.auth-page .confirmation-icon {
    width: 96px;
    height: 96px;
    background: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    animation: ulp-successPop 0.5s ease;
}

@keyframes ulp-successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    60% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.auth-page .confirmation-icon .iconify {
    font-size: 48px;
    color: #0e88af;
}

.auth-page .confirmation-content h2 {
    font-size: 1.625rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.auth-page .confirmation-content .confirmation-text {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

.auth-page .confirmation-email-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    padding: 12px 24px;
    border-radius: 12px;
    margin-bottom: 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0369a1;
}

.auth-page .confirmation-email-badge .iconify {
    font-size: 20px;
}

.auth-page .confirmation-info {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 14px;
    margin-bottom: 28px;
    text-align: left;
}

.auth-page .confirmation-info .iconify {
    font-size: 22px;
    color: #d97706;
    flex-shrink: 0;
    margin-top: 1px;
}

.auth-page .confirmation-info p {
    font-size: 0.875rem;
    color: #92400e;
    line-height: 1.6;
}

/* Proceed button (register) */
.auth-page .btn-proceed {
    width: 100%;
    padding: 16px 28px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    color: #ffffff;
    background: #0e88af;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.auth-page .btn-proceed::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.auth-page .btn-proceed:hover {
    background: #0a7a9d;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 136, 175, 0.35);
}

.auth-page .resend-link {
    display: block;
    text-align: center;
    margin-top: 16px;
    font-size: 0.875rem;
    color: #64748b;
}

.auth-page .resend-link a {
    color: #0e88af;
    text-decoration: none;
    font-weight: 600;
}

.auth-page .resend-link a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ========== Fullscreen Steps Layout (register) ========== */
.auth-page .steps-fullscreen {
    display: none;
    min-height: 100vh;
    background: linear-gradient(160deg, #0f172a 0%, #0c1220 40%, #111c33 100%);
    flex-direction: column;
    align-items: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.auth-page .steps-fullscreen.active {
    display: flex;
}

/* Decorative background orbs */
.auth-page .fs-bg-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.auth-page .fs-bg-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(14, 136, 175, 0.08);
    top: -10%;
    right: -8%;
    animation: ulp-orbFloat 12s ease-in-out infinite;
}

.auth-page .fs-bg-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.05);
    bottom: -5%;
    left: -5%;
    animation: ulp-orbFloat 16s ease-in-out infinite reverse;
}

.auth-page .fs-bg-orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(16, 185, 129, 0.05);
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    animation: ulp-orbFloat 10s ease-in-out infinite 2s;
}

@keyframes ulp-orbFloat {

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

    50% {
        transform: translateY(-30px) scale(1.05);
        opacity: 0.7;
    }
}

.auth-page .steps-header {
    text-align: center;
    padding: 2.5rem 1rem 1.5rem;
    position: relative;
    z-index: 1;
}

.auth-page .steps-header img {
    height: 48px;
    width: auto;
}

.auth-page .steps-header .tagline {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Fullscreen step indicator with labels */
.auth-page .steps-indicator {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0 2rem 2rem;
    gap: 0;
    position: relative;
    z-index: 1;
}

.auth-page .si-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.auth-page .si-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.4s ease;
}

.auth-page .si-step:has(.si-dot.active) .si-label {
    color: #0e88af;
}

.auth-page .si-step:has(.si-dot.completed) .si-label {
    color: #10b981;
}

.auth-page .si-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.auth-page .si-dot.active {
    background: #0e88af;
    border-color: #0e88af;
    color: #ffffff;
    box-shadow: 0 0 0 5px rgba(14, 136, 175, 0.2), 0 4px 16px rgba(14, 136, 175, 0.3);
}

.auth-page .si-dot.completed {
    background: #10b981;
    border-color: #10b981;
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

.auth-page .si-dot.completed .si-num {
    display: none;
}

.auth-page .si-dot.completed .si-check {
    display: flex;
}

.auth-page .si-check {
    display: none;
    font-size: 16px;
}

.auth-page .si-line {
    width: 56px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.4s ease;
    margin-top: 19px;
}

.auth-page .si-line.completed {
    background: linear-gradient(90deg, #10b981, #0e88af);
}

/* ========== Steps Card ========== */
.auth-page .steps-card {
    background: #ffffff;
    border-radius: 24px;
    width: 100%;
    max-width: 540px;
    margin: 0 1rem;
    padding: 1.8rem 2.75rem 2.75rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.05);
    animation: ulp-cardFadeIn 0.6s ease-out;
    position: relative;
    z-index: 1;
}

@keyframes ulp-cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
    }

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

.auth-page .fs-step {
    display: none;
    animation: ulp-stepFadeIn 0.5s ease;
}

.auth-page .fs-step.active {
    display: block;
}

@keyframes ulp-stepFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

/* Step icon (above title) */
/* Step header (icon + title inline) */
.auth-page .fs-step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 1.25rem;
}

.auth-page .fs-step-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.auth-page .fs-step-icon .iconify {
    font-size: 24px;
    color: #0e88af;
}

/* Step headings */
.auth-page .fs-step-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.2rem;
    letter-spacing: -0.02em;
}

.auth-page .fs-step-subtitle {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Back button (dark bg) */
.auth-page .fs-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    margin-left: -8px;
}

.auth-page .fs-back-btn:hover {
    color: #0e88af;
    background: rgba(14, 136, 175, 0.06);
}

.auth-page .fs-back-btn .iconify {
    font-size: 18px;
}

/* Form controls for fullscreen steps */
.auth-page .fs-form-group {
    margin-bottom: 1rem;
}

.auth-page .fs-form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
}

.auth-page .fs-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-family: inherit;
    color: #1e293b;
    background: #f8fafc;
    transition: all 0.25s ease;
    outline: none;
}

.auth-page .fs-input::placeholder {
    color: #94a3b8;
}

.auth-page .fs-input:hover {
    border-color: #cbd5e1;
    background: #f1f5f9;
}

.auth-page .fs-input:focus {
    background: #ffffff;
    border-color: #0e88af;
    box-shadow: 0 0 0 4px rgba(14, 136, 175, 0.12);
}

.auth-page .fs-input.has-value {
    background: #f0f9fc;
    border-color: #0e88af;
    font-weight: 600;
}

.auth-page .fs-input.error {
    border-color: #ef4444;
    background: #fef2f2;
}

.auth-page .fs-error {
    font-size: 0.8rem;
    color: #ef4444;
    margin-top: 0.35rem;
    display: none;
}

.auth-page .fs-error.visible {
    display: block;
}

/* URL wrapper */
.auth-page .url-wrapper {
    position: relative;
}

.auth-page .url-wrapper .fs-input {
    padding-right: 44px;
}

.auth-page .url-clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #64748b;
    font-size: 20px;
    padding: 4px;
    display: none;
    align-items: center;
    transition: color 0.2s;
}

.auth-page .url-clear.visible {
    display: flex;
}

.auth-page .url-clear:hover {
    color: #ef4444;
}

/* ========== Keyword Section (register) ========== */
.auth-page .kw-section-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.auth-page .kw-input-row {
    display: flex;
    gap: 8px;
    margin-bottom: 1rem;
}

.auth-page .kw-input-row .fs-input {
    flex: 1;
}

.auth-page .kw-add-btn {
    width: 46px;
    height: 46px;
    background: #0e88af;
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.auth-page .kw-add-btn:hover {
    background: #0a7a9d;
}

.auth-page .kw-list {
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    max-height: 220px;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.auth-page .kw-list::-webkit-scrollbar {
    width: 6px;
}

.auth-page .kw-list::-webkit-scrollbar-track {
    background: transparent;
}

.auth-page .kw-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.auth-page .kw-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0.85rem 1.1rem;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    transition: background 0.15s ease;
    user-select: none;
}

.auth-page .kw-item:last-child {
    border-bottom: none;
}

.auth-page .kw-item:hover {
    background: #f8fafc;
}

.auth-page .kw-item.selected {
    background: #f0f9fc;
}

.auth-page .kw-check {
    width: 22px;
    height: 22px;
    border: 2px solid #e2e8f0;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.auth-page .kw-item.selected .kw-check {
    background: #0e88af;
    border-color: #0e88af;
}

.auth-page .kw-check .iconify {
    font-size: 14px;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.2s;
}

.auth-page .kw-item.selected .kw-check .iconify {
    opacity: 1;
}

.auth-page .kw-label {
    font-size: 0.9375rem;
    color: #334155;
    font-weight: 500;
}

.auth-page .kw-empty {
    text-align: center;
    padding: 2rem 1rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Tags */
.auth-page .kw-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1rem;
}

.auth-page .kw-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #0e88af;
    color: #ffffff;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    animation: ulp-tagPop 0.25s ease-out;
}

@keyframes ulp-tagPop {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.auth-page .kw-tag-remove {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.auth-page .kw-tag-remove:hover {
    color: #ffffff;
}

/* Next button (right-aligned) */
.auth-page .btn-row-right {
    display: flex;
    justify-content: flex-end;
}

.auth-page .btn-next {
    padding: 12px 32px;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    color: #ffffff;
    background: #0e88af;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.auth-page .btn-next:hover {
    background: #0a7a9d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 136, 175, 0.3);
}

/* ========== Payment Step (register) ========== */
.auth-page .plan-summary {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #f8fafc 100%);
    border: 1px solid #e0f2fe;
    border-radius: 14px;
    padding: 0.6rem 1.25rem;
}

.auth-page .plan-row {
    display: flex;
    justify-content: space-between;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(14, 136, 175, 0.08);
}

.auth-page .plan-row:last-child {
    border-bottom: none;
}

.auth-page .plan-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
}

.auth-page .plan-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0e88af;
}

.auth-page .payment-tabs {
    display: flex;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.auth-page .payment-tab {
    flex: 1;
    padding: 0.9rem 1rem;
    background: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    color: #64748b;
    transition: all 0.2s ease;
}

.auth-page .payment-tab:first-child {
    border-right: 2px solid #e2e8f0;
}

.auth-page .payment-tab.active {
    background: #f0f9fc;
    color: #0e88af;
}

.auth-page .payment-tab .iconify {
    font-size: 20px;
}

.auth-page .sepa-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.auth-page .card-brands {
    display: flex;
    gap: 4px;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
}

.auth-page .card-brand {
    width: 34px;
    height: 22px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    font-weight: 800;
    color: #ffffff;
}

.auth-page .card-brand.visa {
    background: #1a1f71;
}

.auth-page .card-brand.mc {
    background: linear-gradient(135deg, #eb001b 50%, #f79e1b 50%);
}

.auth-page .card-brand.disc {
    background: #ff6000;
}

.auth-page .card-num-wrap {
    position: relative;
}

.auth-page .card-num-wrap .fs-input {
    padding-right: 125px;
}

.auth-page .cvv-wrap {
    position: relative;
}

.auth-page .cvv-wrap .fs-input {
    padding-right: 40px;
}

.auth-page .cvv-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 20px;
    display: flex;
}

.auth-page .fs-select {
    width: 100%;
    padding: 14px 36px 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-family: inherit;
    color: #1e293b;
    background: #f8fafc;
    transition: all 0.25s ease;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%2364748b' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.auth-page .fs-select:focus {
    border-color: #0e88af;
    box-shadow: 0 0 0 4px rgba(14, 136, 175, 0.12);
}

.auth-page .payment-form {
    display: block;
}

.auth-page .payment-form.hidden {
    display: none;
}

.auth-page .sepa-form {
    display: none;
}

.auth-page .sepa-form.visible {
    display: block;
}

.auth-page .consent-text {
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.6;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.auth-page .consent-text.required {
    color: #ef4444;
    font-weight: 500;
}

.auth-page .consent-text a {
    color: #0e88af;
    text-decoration: underline;
    font-weight: 600;
}

.auth-page .consent-text a:hover {
    color: #0a7a9d;
}

/* ========== Thank You Step (register) ========== */
.auth-page .thankyou-content {
    text-align: center;
    padding: 1rem 0;
    position: relative;
}

/* Confetti animation */
.auth-page .thankyou-confetti {
    position: absolute;
    top: 48px;
    left: 50%;
    width: 0;
    height: 0;
    z-index: 0;
}

.auth-page .confetti-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color);
    animation: ulp-confettiBurst 0.8s ease-out var(--delay) forwards;
    opacity: 0;
}

@keyframes ulp-confettiBurst {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        transform: translate(var(--x), var(--y)) scale(1);
        opacity: 0;
    }
}

.auth-page .thankyou-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    animation: ulp-successPop 0.5s ease;
    box-shadow: 0 16px 40px rgba(16, 185, 129, 0.3), 0 0 0 6px rgba(16, 185, 129, 0.1);
    position: relative;
    z-index: 1;
}

.auth-page .thankyou-icon .iconify {
    font-size: 50px;
    color: #ffffff;
}

.auth-page .thankyou-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.auth-page .thankyou-message {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

.auth-page .thankyou-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fef3c7;
    color: #92400e;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.auth-page .thankyou-badge .iconify {
    font-size: 18px;
}

.auth-page .thankyou-info {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 14px;
    padding: 1.25rem;
    margin-bottom: 24px;
    text-align: left;
}

.auth-page .thankyou-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.45rem 0;
    font-size: 0.9rem;
    color: #334155;
}

.auth-page .thankyou-info-item .iconify {
    font-size: 20px;
    color: #0e88af;
    flex-shrink: 0;
}

.auth-page .btn-to-login {
    width: 100%;
    padding: 18px 28px;
    font-size: 1.0625rem;
    font-weight: 700;
    font-family: inherit;
    color: #ffffff;
    background: linear-gradient(135deg, #0e88af 0%, #0a7a9d 100%);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
}

.auth-page .btn-to-login::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, transparent 100%);
    pointer-events: none;
}

.auth-page .btn-to-login:hover {
    background: linear-gradient(135deg, #0a7a9d 0%, #08698a 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(14, 136, 175, 0.4);
    color: #ffffff;
}

.auth-page .btn-to-login:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(14, 136, 175, 0.3);
}

/* Steps footer */
.auth-page .steps-footer {
    text-align: center;
    padding: 1.75rem 1rem 2.5rem;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    position: relative;
    z-index: 1;
}

/* ========== Vue Registration Component Overrides (inside steps-card) ========== */
.auth-page .steps-card .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-family: inherit;
    color: #1e293b;
    background: #f8fafc;
    transition: all 0.25s ease;
    outline: none;
}

.auth-page .steps-card .form-control::placeholder {
    color: #94a3b8;
}

.auth-page .steps-card .form-control:hover {
    border-color: #cbd5e1;
    background: #f1f5f9;
}

.auth-page .steps-card .form-control:focus {
    background: #ffffff;
    border-color: #0e88af;
    box-shadow: 0 0 0 4px rgba(14, 136, 175, 0.12);
}

.auth-page .steps-card #search-button {
    width: 100%;
    padding: 16px 28px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    color: #ffffff;
    background: #0e88af;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.25s ease;
}

.auth-page .steps-card #search-button:hover {
    background: #0a7a9d;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 136, 175, 0.35);
}

.auth-page .steps-card #search-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.auth-page .steps-card #search-button .search-icon {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.auth-page .steps-card .remove-domain-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #64748b;
    padding: 4px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.auth-page .steps-card .remove-domain-btn:hover {
    color: #ef4444;
}

.auth-page .steps-card .remove-domain-btn .search-icon {
    width: 20px;
    height: 20px;
}

.auth-page .steps-card .keyword-search-group {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
}

.auth-page .steps-card .keyword-search-group .form-control {
    flex: 1;
    border-radius: 12px !important;
}

.auth-page .steps-card .keyword-search-group .v-popper {
    display: flex;
    flex-shrink: 0;
}

.auth-page .steps-card .keyword-search-group .btn-primary {
    width: 50px;
    min-width: 50px;
    height: 100%;
    padding: 0;
    background: #0e88af;
    border: none;
    border-radius: 12px !important;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    font-size: 20px;
}

.auth-page .steps-card .keyword-search-group .btn-primary:hover {
    background: #0a7a9d;
}

.auth-page .steps-card .keywords-list {
    border: 2px solid #e2e8f0 !important;
    border-radius: 14px !important;
    max-height: 220px;
    overflow-y: auto;
    padding: 0 !important;
}

.auth-page .steps-card .keywords-list .form-check {
    padding: 0.5rem 2.5rem !important;
    border-bottom: 1px solid #f1f5f9;
    margin: 0;
    cursor: pointer;
    transition: background 0.15s ease;
}

.auth-page .steps-card .keywords-list .form-check:last-child {
    border-bottom: none;
}

.auth-page .steps-card .keywords-list .form-check:hover {
    background: #f8fafc;
}

.auth-page .steps-card .keywords-list .form-check-input {
    width: 18px;
    height: 18px;
    border: 2px solid #e2e8f0;
    border-radius: 5px;
    margin-top: 0;
    flex-shrink: 0;
    cursor: pointer;
}

.auth-page .steps-card .keywords-list .form-check-input:checked {
    background-color: #0e88af;
    border-color: #0e88af;
}

.auth-page .steps-card .keywords-list .form-check-label {
    font-size: 0.9375rem;
    color: #334155;
    font-weight: 500;
    cursor: pointer;
}

.auth-page .steps-card .badge.bg-primary {
    background: #0e88af !important;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.8125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.auth-page .steps-card .badge .btn-close {
    width: 10px;
    height: 10px;
    padding: 0;
}

.auth-page .steps-card .d-flex.justify-content-end .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    color: #ffffff;
    background: #0e88af;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.auth-page .steps-card .d-flex.justify-content-end .btn-primary::after {
    content: '\2192';
    font-size: 1.1em;
}

.auth-page .steps-card .d-flex.justify-content-end .btn-primary:hover {
    background: #0a7a9d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 136, 175, 0.3);
}

/* Domain detail info box */
.auth-page .domain-detail-info {
    display: flex;
    gap: 14px;
    background: linear-gradient(135deg, #f0f9ff 0%, #f8fafc 100%);
    border: 1px solid #e0f2fe;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.75rem;
}

.auth-page .domain-detail-info-text br {
    display: block;
    content: '';
    margin-top: 0.35rem;
}

.auth-page .domain-detail-info-icon {
    flex-shrink: 0;
    color: #0e88af;
    margin-top: 2px;
}

.auth-page .domain-detail-info-text {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.55;
}

.auth-page .steps-card textarea.form-control {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 0.9375rem;
    font-family: inherit;
    color: #1e293b;
    background: #ffffff;
    transition: all 0.25s ease;
    resize: vertical;
}

.auth-page .steps-card textarea.form-control:focus {
    border-color: #0e88af;
    box-shadow: 0 0 0 3px rgba(14, 136, 175, 0.1);
    outline: none;
}

.auth-page .steps-card textarea.form-control::placeholder {
    color: #94a3b8;
}

.auth-page .steps-card .spinner-border.text-primary {
    color: #0e88af !important;
}

/* ========== Footer (shared) ========== */
.auth-page .login-footer,
.auth-page .register-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid #e2e8f0;
}

.auth-page .login-footer a,
.auth-page .register-footer a {
    font-size: 0.8125rem;
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

.auth-page .login-footer a:hover,
.auth-page .register-footer a:hover {
    color: #0e88af;
}

.auth-page .login-footer .divider,
.auth-page .register-footer .divider {
    font-size: 0.625rem;
    color: #cbd5e1;
}

/* ========== Animation (shared) ========== */
.auth-page .login-form-content {
    animation: ulp-fadeSlideIn 0.4s ease;
}

@keyframes ulp-fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

/* ========== Focus Visible (shared) ========== */
.auth-page :focus-visible {
    outline: 2px solid #0e88af;
    outline-offset: 3px;
}

.auth-page button:focus:not(:focus-visible),
.auth-page input:focus:not(:focus-visible) {
    outline: none;
}

/* ========== Selection (shared) ========== */
.auth-page ::selection {
    background: rgba(14, 136, 175, 0.2);
    color: #0f172a;
}

/* ========== Responsive Design ========== */
@media (max-width: 1200px) {

    .auth-page .login-branding,
    .auth-page .register-branding {
        flex: 0 0 45%;
        padding: 48px;
    }

    .auth-page .branding-text h1 {
        font-size: 2.125rem;
    }
}

@media (max-width: 1024px) {

    .auth-page .login-branding,
    .auth-page .register-branding {
        flex: 0 0 42%;
        padding: 40px;
    }

    .auth-page .branding-text h1 {
        font-size: 1.875rem;
    }

    .auth-page .branding-text p {
        font-size: 1rem;
    }

    .auth-page .feature-icon {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 900px) {

    .auth-page .login-wrapper,
    .auth-page .register-wrapper {
        flex-direction: column;
    }

    .auth-page .login-branding,
    .auth-page .register-branding {
        display: none;
    }

    .auth-page .mobile-logo {
        display: block;
    }

    .auth-page .login-form-container,
    .auth-page .register-form-container {
        padding: 32px 24px;
        min-height: 100vh;
        background: #ffffff;
    }

    .auth-page .login-form-container::before,
    .auth-page .register-form-container::before {
        display: none;
    }

    .auth-page .login-form-wrapper {
        max-width: 400px;
    }

    .auth-page .back-btn {
        position: relative;
        left: 0;
        top: 0;
        margin-bottom: 20px;
    }

    .auth-page .form-header {
        text-align: left;
    }
}

@media (max-width: 575px) {
    .auth-page .register-form-container {
        padding: 24px 20px;
    }

    .auth-page .register-form-wrapper {
        max-width: 100%;
    }

    .auth-page .form-row {
        grid-template-columns: 1fr;
    }

    .auth-page .input-wrapper input,
    .auth-page .input-wrapper input.form-control {
        padding: 14px 16px 14px 48px;
        font-size: 1rem;
        border-radius: 12px;
    }

    .auth-page .steps-card {
        padding: 1.75rem 1.5rem;
        margin: 0 0.75rem;
        border-radius: 18px;
    }

    .auth-page .si-dot {
        width: 32px;
        height: 32px;
        font-size: 0.7rem;
    }

    .auth-page .si-line {
        width: 20px;
        margin-top: 16px;
    }

    .auth-page .si-label {
        font-size: 0.55rem;
    }

    .auth-page .fs-step-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .auth-page .fs-step-icon .iconify {
        font-size: 24px;
    }

    .auth-page .fs-step-title {
        font-size: 1.35rem;
    }

    .auth-page .payment-tabs {
        flex-direction: column;
    }

    .auth-page .payment-tab:first-child {
        border-right: none;
        border-bottom: 2px solid #e2e8f0;
    }

    .auth-page .card-brands {
        display: none;
    }

    .auth-page .card-num-wrap .fs-input {
        padding-right: 16px;
    }
}

@media (max-width: 480px) {
    .auth-page .login-form-container {
        padding: 24px 20px;
    }

    .auth-page .login-form-wrapper {
        max-width: 100%;
    }

    .auth-page .form-header h2 {
        font-size: 1.5rem;
    }

    .auth-page .input-icon {
        left: 16px;
    }

    .auth-page .input-icon .iconify {
        font-size: 20px;
    }

    .auth-page .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .auth-page .btn-login {
        padding: 14px 24px;
        border-radius: 12px;
    }

    .auth-page .btn-register,
    .auth-page .btn-proceed {
        padding: 14px 24px;
        border-radius: 12px;
    }

    .auth-page .btn-oauth {
        padding: 12px 16px;
        border-radius: 12px;
        font-size: 0.875rem;
    }

    .auth-page .login-footer,
    .auth-page .register-footer {
        flex-wrap: wrap;
        gap: 10px 16px;
    }
}