/* ==================================================
   REGISTRATION – BRAND FINTECH WEB UI
   Brand Color: #e65429
   ================================================== */

:root {
    --brand: #e65429;
}

/* LEFT BRAND PANEL */
.register-brand {
    background: linear-gradient(135deg, #e65429, #e65429);
    color: #fff;
    padding: 30px 70px;
}

.brand-content {
    max-width: 420px;
}

.brand-content h2 {
    font-weight: 700;
    line-height: 1.3;
}

.brand-content p {
    font-size: 15px;
    opacity: 0.95;
}

.brand-points {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.brand-points li {
    margin-bottom: 12px;
    font-size: 15px;
}

.brand-points i {
    color: #fff;
    margin-right: 8px;
}

/* RIGHT SIDE CENTER */
.register-page-right {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

/* CARD */
.register-card-web {
    width: 100%;
    max-width: 460px;
    background: #fff;
    border-radius: 18px;
    padding: 44px 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    animation: fadeUp 0.5s ease;
}

/* STEP ICON */
.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(13, 156, 104, 0.15);
    color: var(--brand);
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px auto;
}

/* INPUT */
.register-card-web .form-control {
    height: 52px;
}

.register-card-web .form-control:focus {
    border-color: var(--brand);
    box-shadow: none;
}

/* BUTTON */
.register-card-web .btn-success {
    background: var(--brand);
    border-color: var(--brand);
    height: 52px;
    font-size: 16px;
    box-shadow: 0 10px 22px rgba(13, 156, 104, 0.3);
}

.register-card-web .btn-success:hover {
    background: #e65429;
}

/* STEPPER */
.web-stepper .step.active {
    color: var(--brand);
}

.web-stepper .step.active::after {
    background: var(--brand);
}

/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE */
@media (max-width: 991px) {
    .register-brand {
        display: none;
    }

    .register-card-web {
        box-shadow: none;
        border-radius: 0;
        padding: 30px 22px;
    }
}

/* ==================================================
   LEFT VERTICAL STEPPER
   Brand Color: #0D9C68
   ================================================== */

.brand-wrapper {
    width: 100%;
    max-width: 420px;
}

/* STEPPER LIST */
.vertical-stepper {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vertical-stepper li {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
    opacity: 0.65;
}

.vertical-stepper li.active {
    opacity: 1;
}

/* STEP CIRCLE */
.step-circle {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    flex-shrink: 0;
}

.vertical-stepper li.active .step-circle {
    background: #ffffff;
    color: #0D9C68;
}

/* STEP LABEL */
.step-label {
    font-size: 15px;
    font-weight: 500;
}

/* CONNECTOR LINE */
.vertical-stepper li:not(:last-child)::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 28px;
    background: rgba(255, 255, 255, 0.35);
    left: 16px;
    margin-top: 34px;
}

/* POSITION FIX */
.vertical-stepper li {
    position: relative;
}

/* ==================================================
   LOGO + TOP BAR (REGISTRATION)
   ================================================== */

/* DESKTOP TOP BAR */
.brand-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* LOGO */
.brand-logo {
    height: 40px;
    max-width: 180px;
    object-fit: contain;
}

/* LOGIN CTA */
.brand-login {
    font-size: 14px;
}

.brand-login span {
    opacity: 0.9;
}

.brand-login a {
    color: #ffffff;
    font-weight: 600;
    margin-left: 6px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.6);
}

.brand-login a:hover {
    border-bottom-color: #ffffff;
}

/* MOBILE TOP */
.mobile-top .brand-logo {
    height: 36px;
}

.mobile-login a {
    color: #0D9C68;
    text-decoration: none;
}

.mobile-login a:hover {
    text-decoration: underline;
}

/* LOGO CONTRAST FIX */
.brand-logo {
    height: 40px;
    max-width: 180px;
    object-fit: contain;

    background: #ffffff;
    padding: 6px 10px;
    border-radius: 6px;

    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.verification-summary {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 15px;
}

.summary-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.2);
    font-size: 13px;
}

.summary-list li:last-child {
    border-bottom: none;
}

.summary-list .label {
    color: #cfd3da;
}

.summary-list .value {
    font-weight: 500;
    color: #ffffff;
}

.summary-list .status.success {
    color: #2ab57d;
    font-weight: bold;
}

.stop-registration-link {
    font-size: 16px;
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 500;
}

.stop-registration-link:hover {
    text-decoration: underline;
    color: #ff4d4d;
}




