/* Customer registration wizard (shared across start / OTP / password) */
.register-flow__card {
    max-width: 440px;
    margin: 0 auto;
}

.register-flow__head-logo {
    max-height: 48px;
    width: auto;
    object-fit: contain;
    margin-bottom: 4px;
}

.register-progress {
    margin: 0 0 18px;
    padding: 14px 14px 12px;
    border: 1px solid #e8ecf0;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.register-progress__bar {
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 12px;
}

.register-progress__fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #d10024, #ff3b5c);
    transition: width 0.35s ease;
}

.register-progress__fill--1 { width: 33.33%; }
.register-progress__fill--2 { width: 66.66%; }
.register-progress__fill--3 { width: 100%; }

.register-progress__steps {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
    font-weight: 600;
    gap: 8px;
}

.register-progress__steps .is-active {
    color: #d10024;
}

/* Brand accent for OTP step (optional) */
.register-flow--otp .otp-digits__box:focus {
    border-color: #d10024;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(209, 0, 36, 0.2);
}

.register-flow--otp .login-v2__label-otp {
    text-align: center;
    display: block;
    width: 100%;
    margin-bottom: 8px;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: #64748b;
    font-weight: 600;
}

.register-flow__resend-wrap {
    margin-top: 6px;
    text-align: center;
}

.register-flow__resend-hint {
    font-size: 12px;
    color: #64748b;
    margin-top: 8px;
    margin-bottom: 0;
}

.register-flow__resend-btn {
    width: 100%;
    border-radius: 12px !important;
    border: 1px solid #e2e8f0 !important;
    background: #fff !important;
    color: #334155 !important;
    font-weight: 600;
    padding: 12px 16px;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.register-flow__resend-btn:hover:not(:disabled) {
    border-color: #d10024 !important;
    color: #d10024 !important;
    background: #fff5f5 !important;
}

.register-flow__resend-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}
