﻿/* ===== Register V2 - World of Warcraft Theme ===== */

/* --- Keyframes --- */
@keyframes rv2GoldPulse {
    0%, 100% { border-color: rgba(201, 164, 76, 0.35); }
    50% { border-color: rgba(201, 164, 76, 0.65); }
}

@keyframes rv2DotCheckBounce {
    0% { transform: scale(0) rotate(-45deg); }
    60% { transform: scale(1.15) rotate(-45deg); }
    100% { transform: scale(1) rotate(-45deg); }
}

@keyframes rv2BtnShimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

@keyframes rv2SlideOutRight {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(40px); }
}

@keyframes rv2SlideOutLeft {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(-40px); }
}

@keyframes rv2SlideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes rv2SlideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes rv2Spin {
    to { transform: rotate(360deg); }
}

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

@keyframes rv2SmsFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes rv2DrawCircle {
    to { stroke-dashoffset: 0; }
}

@keyframes rv2DrawCheck {
    to { stroke-dashoffset: 0; }
}

@keyframes rv2RuneGlow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

@keyframes rv2XpShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ===== Wrapper ===== */
.rv2-wrapper {
    margin: 0 auto;
    padding: 0 24px 40px;
    direction: rtl;
    font-family: Tahoma, Verdana, sans-serif;
}

/* ===== Header Banner ===== */
.rv2-header-banner {
    text-align: center;
    padding: 0px 20px 28px;
    position: relative;
    margin-bottom: 8px;
}

/* WoW ornamental corner brackets */
.rv2-wow-ornament {
    position: absolute;
    top: 6px;
    width: 30px;
    height: 30px;
    border-color: rgba(201, 164, 76, 0.3);
    border-style: solid;
    border-width: 0;
}
.rv2-ornament-left {
    left: 0;
    border-left-width: 2px;
    border-top-width: 2px;
}
.rv2-ornament-right {
    right: 0;
    border-right-width: 2px;
    border-top-width: 2px;
}

/* WoW title divider with gem */
.rv2-title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}
.rv2-divider-wing {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 164, 76, 0.5), transparent);
}
.rv2-divider-gem {
    width: 8px;
    height: 8px;
    background: rgba(201, 164, 76, 0.6);
    transform: rotate(45deg);
    flex-shrink: 0;
    animation: rv2RuneGlow 3s ease-in-out infinite;
}

.rv2-main-title {
    font-size: 26px;
    color: #d1c489;
    margin: 0 0 8px 0;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.rv2-main-subtitle {
    font-size: 13px;
    color: rgba(180, 165, 130, 0.55);
    margin: 0;
}

/* ===== Progress Bar (WoW XP Bar) ===== */
.rv2-progress {
    margin-bottom: 28px;
    padding: 0 12px;
}

.rv2-progress-track {
    height: 4px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 22px;
    border: 1px solid rgba(101, 78, 40, 0.35);
}

.rv2-progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #8b6914, #c9a44c, #ffd100, #c9a44c);
    background-size: 200% 100%;
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: rv2XpShimmer 3s linear infinite;
}

.rv2-steps-indicator {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.rv2-step-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: default;
    flex: 1;
}

.rv2-dot-inner {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 8, 5, 0.6);
    border: 2px solid rgba(101, 78, 40, 0.4);
    color: rgba(180, 165, 130, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.rv2-dot-inner svg {
    width: 16px;
    height: 16px;
}

.rv2-step-dot.active .rv2-dot-inner {
    background: rgba(201, 164, 76, 0.12);
    border-color: rgba(201, 164, 76, 0.6);
    color: #ffd100;
    animation: rv2GoldPulse 3s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(201, 164, 76, 0.2);
}

.rv2-step-dot.completed .rv2-dot-inner {
    background: rgba(30, 255, 0, 0.06);
    border-color: rgba(30, 255, 0, 0.35);
    color: #1eff00;
}

.rv2-step-dot.completed .rv2-dot-inner::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 5px;
    border-bottom: 2px solid #1eff00;
    border-left: 2px solid #1eff00;
    transform: rotate(-45deg);
    margin-top: -2px;
    animation: rv2DotCheckBounce 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.rv2-step-dot.completed .rv2-dot-inner svg {
    display: none;
}

.rv2-dot-label {
    font-size: 11px;
    color: rgba(180, 165, 130, 0.35);
    transition: color 0.4s ease;
    white-space: nowrap;
}

.rv2-step-dot.active .rv2-dot-label {
    color: rgba(255, 209, 0, 0.85);
}

.rv2-step-dot.completed .rv2-dot-label {
    color: rgba(30, 255, 0, 0.7);
}

/* ===== Step Container ===== */
.rv2-step {
    display: none;
    opacity: 0;
    transform: translateX(0);
}

.rv2-step.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.rv2-step.slide-out-right {
    animation: rv2SlideOutRight 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.rv2-step.slide-out-left {
    animation: rv2SlideOutLeft 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.rv2-step.slide-in-left {
    animation: rv2SlideInLeft 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.rv2-step.slide-in-right {
    animation: rv2SlideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ===== Card (WoW Frame) ===== */
.rv2-card {
    background: #252017;
    border: 1px solid rgba(101, 78, 40, 0.5);
    border-radius: 4px;
    padding: 28px 32px 24px;
    position: relative;
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(201, 164, 76, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.6),
        0 0 1px rgba(101, 78, 40, 0.4);
    transition: border-color 0.5s ease;
}

/* Gold ornamental top border */
.rv2-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(101, 78, 40, 0.1), #c9a44c 30%, #ffd100 50%, #c9a44c 70%, rgba(101, 78, 40, 0.1));
}

/* Gold ornamental bottom border */
.rv2-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(101, 78, 40, 0.05), rgba(201, 164, 76, 0.2) 30%, rgba(201, 164, 76, 0.3) 50%, rgba(201, 164, 76, 0.2) 70%, rgba(101, 78, 40, 0.05));
    pointer-events: none;
}

.rv2-card-header {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.rv2-card-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    background: rgba(201, 164, 76, 0.08);
    border: 1px solid rgba(201, 164, 76, 0.3);
    border-radius: 3px;
    font-size: 11px;
    color: #c9a44c;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.rv2-card-header h2 {
    font-size: 18px;
    color: #d4b37a;
    margin: 0;
    font-weight: 600;
}

/* ===== Form Fields ===== */
.rv2-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rv2-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.rv2-field label {
    font-size: 14px;
    color: rgba(212, 179, 122, 0.85);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rv2-field label svg {
    color: rgba(201, 164, 76, 0.55);
}

.rv2-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.rv2-input-wrap input {
    width: 100%;
    padding: 14px 18px;
    padding-left: 42px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(101, 78, 40, 0.35);
    border-radius: 3px;
    color: #d4b37a;
    font-size: 16px;
    font-family: Tahoma, Verdana, sans-serif;
    outline: none;
    transition: all 0.3s ease;
    direction: rtl;
}

.rv2-input-wrap input[dir="ltr"] {
    direction: ltr;
    text-align: left;
}

.rv2-input-wrap input::placeholder {
    color: rgba(180, 165, 130, 0.3);
    font-size: 14px;
}

.rv2-input-wrap input:focus {
    border-color: rgba(201, 164, 76, 0.55);
    background: rgba(201, 164, 76, 0.04);
    box-shadow: 0 0 6px rgba(201, 164, 76, 0.12);
}

.rv2-input-wrap.has-error input {
    border-color: rgba(196, 31, 59, 0.5);
    background: rgba(196, 31, 59, 0.04);
}

.rv2-input-wrap.has-success input {
    border-color: rgba(30, 255, 0, 0.25);
    background: rgba(30, 255, 0, 0.02);
}

.rv2-field-status {
    position: absolute;
    left: 12px;
    display: flex;
    align-items: center;
}

.rv2-field-hint {
    font-size: 11px;
    color: #c41f3b;
    min-height: 16px;
    opacity: 0;
    transform: translateY(-4px);
    transition: all 0.25s ease;
}

.rv2-field-hint.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Password Requirements ===== */
.rv2-pw-reqs {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 4px;
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(101, 78, 40, 0.15);
    border-radius: 3px;
}

.rv2-pw-req {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(180, 165, 130, 0.45);
    transition: color 0.3s ease;
}

.rv2-pw-req-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid rgba(101, 78, 40, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.rv2-pw-req.met .rv2-pw-req-icon {
    background: rgba(30, 255, 0, 0.1);
    border-color: rgba(30, 255, 0, 0.4);
}

.rv2-pw-req.met .rv2-pw-req-icon::after {
    content: '';
    width: 6px;
    height: 3.5px;
    border-bottom: 1.5px solid #1eff00;
    border-left: 1.5px solid #1eff00;
    transform: rotate(-45deg);
    margin-top: -1px;
}

.rv2-pw-req.met {
    color: rgba(30, 255, 0, 0.7);
}

/* ===== Spinner ===== */
.rv2-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(201, 164, 76, 0.18);
    border-top-color: #c9a44c;
    border-radius: 50%;
    animation: rv2Spin 0.6s linear infinite;
}

/* ===== Navigation Buttons ===== */
.rv2-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    gap: 12px;
}

.rv2-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    font-family: Tahoma, Verdana, sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.rv2-btn-next {
    background: linear-gradient(180deg, rgba(201, 164, 76, 0.15), rgba(139, 105, 20, 0.1));
    color: #c9a44c;
    border: 1px solid rgba(201, 164, 76, 0.3);
    margin-right: auto;
}

.rv2-btn-next:hover {
    background: linear-gradient(180deg, rgba(201, 164, 76, 0.25), rgba(139, 105, 20, 0.15));
    border-color: rgba(201, 164, 76, 0.5);
    transform: translateX(-2px);
    box-shadow: 0 0 8px rgba(201, 164, 76, 0.15);
}

.rv2-btn-prev {
    background: transparent;
    color: rgba(180, 165, 130, 0.4);
    border: 1px solid rgba(101, 78, 40, 0.3);
}

.rv2-btn-prev:hover {
    color: rgba(212, 179, 122, 0.7);
    border-color: rgba(101, 78, 40, 0.5);
    transform: translateX(2px);
}

.rv2-btn-submit {
    background: linear-gradient(180deg, #c9a44c, #8b6914);
    color: #1a0e00;
    border: 1px solid rgba(255, 209, 0, 0.3);
    padding: 14px 38px;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 0 rgba(201, 164, 76, 0.3);
}

.rv2-btn-submit::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: none;
}

.rv2-btn-submit:hover {
    transform: translateY(-1px);
    background: linear-gradient(180deg, #d4b060, #a07a1a);
    box-shadow: 0 0 12px rgba(201, 164, 76, 0.25);
}

.rv2-btn-submit:hover::after {
    animation: rv2BtnShimmer 0.8s ease;
}

.rv2-btn-submit.loading {
    opacity: 0.85;
    pointer-events: none;
}

.rv2-btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.rv2-btn-submit.loading .rv2-btn-text {
    visibility: hidden;
}

.rv2-btn-submit.loading .rv2-btn-spinner {
    display: block;
}

.rv2-btn-spinner {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 22px;
    height: 22px;
    border: 2.5px solid rgba(26, 14, 0, 0.25);
    border-top-color: #1a0e00;
    border-radius: 50%;
    animation: rv2Spin 0.6s linear infinite;
    z-index: 2;
}

/* ===== Captcha ===== */
.rv2-captcha-section {
    margin-bottom: 18px;
}

.rv2-captcha-section > label {
    display: block;
    font-size: 12px;
    color: rgba(212, 179, 122, 0.68);
    font-weight: 500;
    margin-bottom: 8px;
}

.rv2-captcha-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rv2-captcha-row img {
    border-radius: 3px;
    border: 1px solid rgba(101, 78, 40, 0.35);
    height: 50px;
    flex-shrink: 0;
}

.rv2-captcha-refresh {
    background: transparent;
    border: 1px solid rgba(101, 78, 40, 0.35);
    border-radius: 3px;
    padding: 10px;
    color: rgba(201, 164, 76, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.rv2-captcha-refresh:hover {
    color: #c9a44c;
    border-color: rgba(201, 164, 76, 0.45);
}

.rv2-captcha-refresh.spinning svg {
    animation: rv2Spin 0.6s ease;
}

.rv2-captcha-input {
    flex: 1;
}

.rv2-captcha-input input {
    padding-left: 16px !important;
}

/* ===== Review Section ===== */
.rv2-review {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rv2-review-row {
    display: flex;
    gap: 10px;
}

.rv2-review-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(101, 78, 40, 0.2);
    border-radius: 3px;
    transition: border-color 0.3s ease;
}

.rv2-review-item:hover {
    border-color: rgba(201, 164, 76, 0.35);
}

.rv2-review-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 3px;
    background: rgba(201, 164, 76, 0.08);
    color: rgba(201, 164, 76, 0.7);
}

.rv2-review-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.rv2-review-label {
    font-size: 10px;
    color: rgba(180, 165, 130, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.rv2-review-value {
    font-size: 13px;
    color: #d4b37a;
    font-weight: 500;
    direction: ltr;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ===== Terms Checkbox ===== */
.rv2-terms {
    margin-bottom: 8px;
}

.rv2-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 12px;
    color: rgba(180, 165, 130, 0.55);
}

.rv2-checkbox a {
    color: #c9a44c;
    text-decoration: none;
}

.rv2-checkbox a:hover {
    text-decoration: underline;
}

/* ===== SMS Verification Step ===== */
.rv2-sms-card {
    text-align: center;
    padding: 40px 32px 32px;
}

.rv2-sms-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(201, 164, 76, 0.1), rgba(139, 105, 20, 0.05));
    border: 2px solid rgba(201, 164, 76, 0.3);
    color: #c9a44c;
    margin-bottom: 20px;
    animation: rv2SmsFloat 3s ease-in-out infinite;
}

.rv2-sms-title {
    font-size: 20px;
    color: #d4b37a;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.rv2-sms-desc {
    font-size: 13px;
    color: rgba(180, 165, 130, 0.5);
    margin: 0 0 24px 0;
}

.rv2-sms-desc strong {
    color: #c9a44c;
    direction: ltr;
    unicode-bidi: bidi-override;
}

/* OTP Input Group */
.rv2-otp-wrapper {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(101, 78, 40, 0.25);
    border-radius: 4px;
    padding: 22px 20px 14px;
    margin-bottom: 4px;
}

.rv2-otp-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    direction: ltr;
    margin-bottom: 8px;
}

.rv2-otp-input {
    width: 46px;
    height: 54px;
    text-align: center !important;
    font-size: 22px;
    font-weight: 700;
    color: #d4b37a;
    background: rgba(0, 0, 0, 0.35);
    border: 1.5px solid rgba(101, 78, 40, 0.4);
    border-radius: 3px;
    outline: none;
    transition: all 0.25s ease;
    font-family: 'Consolas', 'Courier New', monospace;
    caret-color: #c9a44c;
    padding: 0 !important;
    direction: ltr !important;
    line-height: 54px;
}

.rv2-otp-input:focus {
    border-color: rgba(201, 164, 76, 0.6);
    background: rgba(201, 164, 76, 0.05);
    box-shadow: 0 0 6px rgba(201, 164, 76, 0.15);
}

.rv2-otp-input.has-value {
    border-color: rgba(201, 164, 76, 0.4);
    color: #ffd100;
}

.rv2-otp-dash {
    color: rgba(101, 78, 40, 0.3);
    font-size: 18px;
    margin: 0 2px;
    user-select: none;
}

.rv2-sms-error {
    text-align: center;
    display: block;
}

.rv2-sms-actions {
    margin-top: 22px;
}

.rv2-sms-submit {
    min-width: 160px;
    justify-content: center;
}

.rv2-sms-resend {
    margin-top: 18px;
    font-size: 12px;
    color: rgba(180, 165, 130, 0.4);
}

.rv2-timer {
    color: #c9a44c;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.rv2-btn-link {
    background: none;
    border: none;
    color: #c9a44c;
    font-size: 13px;
    font-family: Tahoma, Verdana, sans-serif;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    transition: color 0.3s ease;
}

.rv2-btn-link:hover {
    color: #ffd100;
}

/* ===== Success Page ===== */
.rv2-success-container {
    text-align: center;
    padding: 40px 20px;
}

.rv2-success-icon {
    margin-bottom: 28px;
    color: #1eff00;
}

.rv2-success-circle {
    stroke-dasharray: 63;
    stroke-dashoffset: 63;
    animation: rv2DrawCircle 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    stroke: #1eff00;
}

.rv2-success-check {
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    animation: rv2DrawCheck 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
    stroke: #1eff00;
    stroke-width: 2;
}

.rv2-success-title {
    font-size: 24px;
    color: #d4b37a;
    margin: 0 0 14px 0;
    font-weight: 700;
    animation: rv2FadeIn 0.5s ease 0.8s both;
}

.rv2-success-text {
    font-size: 14px;
    color: rgba(180, 165, 130, 0.55);
    line-height: 1.8;
    margin: 0 0 32px 0;
    animation: rv2FadeIn 0.5s ease 1s both;
}

.rv2-success-text strong {
    color: #c9a44c;
}

.rv2-success-actions {
    margin-bottom: 20px;
    animation: rv2FadeIn 0.5s ease 1.4s both;
}

.rv2-success-actions .rv2-btn-submit {
    display: inline-flex;
    text-decoration: none;
}

.rv2-success-redirect {
    font-size: 12px;
    color: rgba(180, 165, 130, 0.35);
    animation: rv2FadeIn 0.5s ease 1.6s both;
}

.rv2-success-redirect span {
    color: #c9a44c;
    font-weight: 600;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 600px) {
    .rv2-wrapper {
        padding: 0 12px 28px;
    }

    .rv2-header-banner {
        padding: 24px 12px 20px;
    }

    .rv2-main-title {
        font-size: 22px;
    }

    .rv2-card {
        padding: 20px 16px 18px;
        border-radius: 4px;
    }

    .rv2-dot-label {
        font-size: 9px;
    }

    .rv2-dot-inner {
        width: 32px;
        height: 32px;
        border-radius: 10px;
    }

    .rv2-card-header h2 {
        font-size: 16px;
    }

    .rv2-btn {
        padding: 10px 18px;
        font-size: 12px;
    }

    .rv2-btn-submit {
        padding: 12px 28px;
    }

    .rv2-review-row {
        flex-direction: column;
    }

    .rv2-captcha-row {
        flex-wrap: wrap;
    }

    .rv2-otp-input {
        width: 38px;
        height: 46px;
        font-size: 18px;
    }

    .rv2-otp-wrapper {
        padding: 16px 12px 10px;
    }
}