:root {
    --primary-color: #054A91;
    --secondary-color: #F17300;
    --text-dark: #1A1A1A;
    --text-light: #5f6670;
    --white: #FFFFFF;
    --light-bg: #F8F9FA;
    --border-color: #E5E7EB;
    --font-family: 'Manrope', sans-serif;
    --transition: all 0.25s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-family); color: var(--text-dark); line-height: 1.6; background: var(--white); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 88px 0; }
.text-center { text-align: center; }
.sub-heading { font-size: .82rem; letter-spacing: .14em; color: var(--secondary-color); margin-bottom: .5rem; font-weight: 800; }
h2 { font-size: clamp(1.8rem, 2.6vw, 2.5rem); margin-bottom: 1rem; font-weight: 800; }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 11px 22px; border-radius: 8px; font-weight: 700; border: 2px solid transparent; cursor: pointer; }
.btn-primary { background: var(--secondary-color); color: var(--white); }
.btn-primary:hover { background: #d96500; }
.btn-secondary { background: var(--primary-color); color: var(--white); }
.btn-secondary:hover { background: #053d79; }
.btn-outline { border-color: rgba(255,255,255,.8); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary-color); }
.btn-light { background: var(--white); color: var(--primary-color); }
.btn-outline-light { border-color: var(--white); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--primary-color); }
.btn-block { width: 100%; }

.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 14px 0; background: transparent; transition: var(--transition); }
.navbar.scrolled { background: var(--white); box-shadow: 0 6px 25px rgba(0,0,0,.08); }
.nav-container { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.nav-container-wide { max-width: 1360px; }
.logo-img { width: 170px; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links > a { color: rgba(255,255,255,.92); font-weight: 600; font-size: .95rem; }
.navbar.scrolled .nav-links > a { color: var(--text-dark); }
.auth-buttons { display: flex; align-items: center; gap: 12px; margin-left: 8px; }
.btn-login { border: 1px solid rgba(255,255,255,.6); color: var(--white) !important; padding: 9px 16px !important; }
.navbar.scrolled .btn-login { border-color: var(--primary-color); color: var(--primary-color) !important; }
.navbar.scrolled .btn-login:hover { background: var(--primary-color); color: var(--white) !important; }
.btn-register { background: var(--secondary-color); color: var(--white) !important; padding: 9px 16px !important; }
.hamburger { display: none; border: 0; background: transparent; color: var(--white); font-size: 1.4rem; }
.navbar.scrolled .hamburger { color: var(--text-dark); }

.hero { min-height: 100svh; display: flex; align-items: center; background: url('/img/landing/hero.png') center/cover no-repeat; color: var(--white); position: relative; padding-top: 90px; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(5,74,145,.75), rgba(5,74,145,.45)); }
.hero-content { position: relative; z-index: 1; max-width: 840px; }
.badge { display: inline-block; padding: 6px 14px; border-radius: 999px; background: rgba(255,255,255,.2); font-weight: 700; font-size: .83rem; margin-bottom: 1rem; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.15; margin-bottom: 1rem; }
.hero-title-fx span { display: block; background: linear-gradient(90deg, #ffffff, #dfeeff, #ffffff); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent; animation: heroShine 7s linear infinite; }
.hero p { font-size: clamp(1rem, 1.7vw, 1.15rem); opacity: .95; max-width: 650px; margin-bottom: 1.5rem; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
@keyframes heroShine { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
.landing-home .hero { background-image: linear-gradient(120deg, rgba(5,74,145,.88), rgba(15,23,36,.78)), url('/img/landing/hero.png'); }
.landing-home .hero-overlay { background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.14), transparent 46%), linear-gradient(rgba(5,74,145,.55), rgba(15,23,36,.55)); }
.hero-shell { padding-bottom: 40px; }
.hero-shell-wide { max-width: 1380px; }
.hero-grid { display: grid; grid-template-columns: 1.45fr .75fr; gap: 36px; align-items: end; }
.hero-copy { position: relative; z-index: 2; }
.hero-panel { position: relative; z-index: 2; background: rgba(255,255,255,.96); color: var(--text-dark); border-radius: 16px; padding: 24px; box-shadow: 0 22px 44px rgba(0,0,0,.22); min-width: 380px; }
.hero-panel h3 { font-size: 1.3rem; color: var(--primary-color); margin-bottom: .35rem; }
.hero-panel p { color: #5f6670; margin-bottom: .75rem; font-size: .94rem; }
.hero-panel ul { list-style: none; margin: 0 0 1rem; padding: 0; display: grid; gap: .45rem; }
.hero-panel li { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .92rem; }
.hero-panel i { color: #0b7a30; }
.hero-kpis { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-kpis span { font-size: .88rem; font-weight: 700; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 6px 12px; }
.hero-kpis i { margin-right: 6px; color: #d7f8e8; }
.hero-title-wide { max-width: 980px; font-size: clamp(2.4rem, 4.8vw, 4.1rem); line-height: 1.1; margin-bottom: .7rem; }
.hero-word-rotator { display: inline-block; min-width: 12ch; color: #ffd99a; border-bottom: 2px solid rgba(255, 217, 154, .45); transition: opacity .35s ease; }

.trust-strip { margin-top: -18px; position: relative; z-index: 8; padding-bottom: 24px; }
.trust-grid { background: #fff; border: 1px solid #ebeff5; border-radius: 14px; box-shadow: 0 10px 26px rgba(4,25,58,.08); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; padding: 18px 22px; }
.trust-grid > div { display: grid; gap: 2px; }
.trust-grid strong { color: var(--primary-color); font-size: 1.35rem; line-height: 1.2; }
.trust-grid span { color: #5f6670; font-size: .86rem; font-weight: 600; }

.stats { margin-top: -52px; position: relative; z-index: 5; padding-bottom: 22px; }
.stats-grid { background: var(--white); border-radius: 14px; box-shadow: 0 14px 35px rgba(0,0,0,.1); padding: 34px; display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.stat-item h3, .stat-item span { font-size: 2rem; font-weight: 800; color: var(--primary-color); }
.stat-item p { color: var(--text-light); font-weight: 600; font-size: .95rem; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-image { border-radius: 14px; overflow: hidden; position: relative; }
.experience-badge { position: absolute; right: 20px; bottom: 20px; background: var(--secondary-color); color: var(--white); padding: 12px 16px; border-radius: 10px; }
.experience-badge .years { display: block; font-size: 1.6rem; font-weight: 800; }
.about-text p { color: var(--text-light); margin-bottom: 1rem; }
.features-list { margin-bottom: 1.4rem; list-style: none; }
.features-list li { display: flex; align-items: center; gap: 10px; margin-bottom: .55rem; font-weight: 600; }
.features-list i { color: var(--secondary-color); }

.why-us { background: var(--light-bg); }
.features-grid { margin-top: 2rem; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.feature-card { background: var(--white); border-radius: 12px; padding: 24px; box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.feature-card h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.feature-card p { color: var(--text-light); font-size: .92rem; }
.icon-box { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: rgba(5,74,145,.1); color: var(--primary-color); margin-bottom: .9rem; }
.landing-home .feature-card { border: 1px solid #ecf0f6; box-shadow: 0 14px 30px rgba(11,35,68,.06); }

.process { background: linear-gradient(180deg, #f8fbff, #ffffff); }
.process-grid { margin-top: 1.4rem; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.process-card { background: #fff; border: 1px solid #e8edf5; border-radius: 14px; padding: 22px; box-shadow: 0 10px 24px rgba(16,38,68,.05); }
.process-no { display: inline-flex; font-size: .76rem; font-weight: 800; letter-spacing: .1em; color: #fff; background: linear-gradient(90deg, var(--primary-color), #2f73bb); padding: 6px 10px; border-radius: 999px; margin-bottom: 10px; }
.process-card h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.process-card p { color: #5f6670; font-size: .92rem; }

.fleet-slider-container { margin-top: 2rem; background: var(--white); border-radius: 14px; box-shadow: 0 16px 40px rgba(0,0,0,.08); overflow: hidden; position: relative; padding-bottom: 52px; }
.fleet-slide { display: none; align-items: center; }
.fleet-slide.active { display: flex; }
.fleet-content { flex: 1; padding: 40px; }
.fleet-content h3 { color: var(--primary-color); font-size: 1.8rem; margin-bottom: .8rem; }
.specs { list-style: none; display: flex; flex-wrap: wrap; gap: 16px; color: var(--text-light); margin-bottom: .9rem; }
.specs li { display: inline-flex; align-items: center; gap: 8px; }
.fleet-image { flex: 1; min-height: 300px; }
.fleet-image img { width: 100%; height: 100%; object-fit: cover; }
.slider-controls { position: absolute; bottom: 10px; left: 0; right: 0; display: flex; justify-content: center; align-items: center; gap: 14px; }
.slider-btn { width: 38px; height: 38px; border-radius: 999px; border: 1px solid var(--border-color); background: var(--white); color: var(--primary-color); }
.slider-dots { display: flex; gap: 8px; }
.dot { width: 10px; height: 10px; border-radius: 999px; background: #ccd3dd; cursor: pointer; }
.dot.active { background: var(--secondary-color); }
.fleet-modern { padding: 0; border: 1px solid #eaf0f8; }
.fleet-track { display: flex; transition: transform .45s ease; touch-action: pan-y; }
.fleet-card-slide { min-width: 100%; display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch; }
.fleet-card-content { padding: 34px 34px 24px; }
.fleet-card-content h3 { color: var(--primary-color); font-size: 1.8rem; margin-bottom: .45rem; }
.fleet-card-content p { color: #596272; margin-bottom: 1rem; max-width: 560px; }
.fleet-card-image { display: grid; place-items: center; background: radial-gradient(circle at 20% 10%, rgba(61,117,171,.18), transparent 55%), linear-gradient(160deg, #f3f7fb, #e8eef6); }
.fleet-card-image img { max-height: 290px; object-fit: contain; }
.fleet-spec-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.fleet-spec-grid li { border: 1px solid #e3eaf3; background: #fff; border-radius: 10px; padding: 10px 12px; display: flex; align-items: center; gap: 10px; font-weight: 700; color: #364254; font-size: .9rem; }
.fleet-spec-grid i { color: var(--primary-color); font-size: 1rem; }

.cta-section { background: var(--primary-color); color: var(--white); text-align: center; padding: 80px 0; }
.cta-box h2 { margin-bottom: .5rem; }
.cta-box p { opacity: .92; margin-bottom: 1.2rem; }
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

.footer { background: #0f1724; color: #d7dde6; padding-top: 60px; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 24px; padding-bottom: 42px; border-bottom: 1px solid rgba(255,255,255,.12); }
.logo-footer { color: var(--white); font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; display: inline-block; }
.logo-footer span { color: var(--secondary-color); }
.footer-col h4 { color: var(--white); margin-bottom: 10px; }
.footer-col a { color: #bac3cf; display: block; margin-bottom: 8px; }
.footer-col a:hover { color: var(--secondary-color); }
.footer-img-reverse { filter: brightness(0) invert(1);}

.copyright {
    text-align: center;
    font-size: .88rem;
    color: #a9b4c3;
    padding: 18px 20px;
}

.auth-body, .auth-body-centered { min-height: 100svh; }
.auth-container { display: flex; min-height: 100svh; }
.auth-left { flex: 4; position: relative; background-size: cover; background-position: center; padding: 52px; display: flex; align-items: center; color: var(--white); }
.auth-overlay { position: absolute; inset: 0; background: rgba(5,74,145,.84); }
.auth-content-left { position: relative; z-index: 1; max-width: 520px; }
.auth-logo img { width: 180px; margin-bottom: 24px; }
.auth-content-left h2 { font-size: 2rem; margin-bottom: .9rem; }
.auth-content-left p { opacity: .95; margin-bottom: 1rem; }
.auth-benefits { display: grid; gap: .7rem; }
.benefit-item { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.benefit-item i { width: 22px; height: 22px; border-radius: 999px; display: grid; place-items: center; background: var(--secondary-color); font-size: .7rem; }

.auth-right { flex: 5; padding: 34px; display: flex; align-items: center; justify-content: center; background: var(--white); }
.auth-form-container { width: 100%; max-width: 560px; }
.auth-header { margin-bottom: 20px; }
.auth-header h2 { color: var(--primary-color); margin-bottom: .35rem; font-size: 1.9rem; }
.auth-header a { color: var(--secondary-color); font-weight: 700; }
.auth-form .form-group { margin-bottom: 14px; }
.auth-form label { display: block; font-weight: 700; margin-bottom: 6px; font-size: .92rem; }
.auth-form input, .auth-form select { width: 100%; border: 1px solid var(--border-color); border-radius: 8px; padding: 11px 13px; font: inherit; }
.auth-form input:focus, .auth-form select:focus { outline: 2px solid rgba(5,74,145,.15); border-color: var(--primary-color); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-check { display: flex; align-items: center; gap: 8px; margin: 10px 0 16px; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; }
.form-check.form-switch input.form-check-input[type="checkbox"] { width: 2.5em; height: 1.3em; min-width: 2.5em; border-radius: 999px; }
.text-danger { color: #cc1f1a; font-size: .82rem; }
.form-section-title { margin: 10px 0 10px; font-size: 1rem; color: var(--primary-color); }

.auth-body-centered { position: relative; display: grid; place-items: center; overflow: hidden; }
.auth-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.auth-overlay-full { position: absolute; inset: 0; background: rgba(5,74,145,.7); backdrop-filter: blur(4px); }
.login-card { position: relative; z-index: 1; width: min(92%, 460px); background: var(--white); border-radius: 14px; box-shadow: 0 25px 60px rgba(0,0,0,.25); padding: 38px; }
.login-header { text-align: center; margin-bottom: 18px; }
.login-logo { width: 170px; margin: 0 auto 14px; }
.login-header h2 { margin-bottom: 4px; color: var(--primary-color); font-size: 1.7rem; }
.input-icon { position: relative; }
.input-icon i { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: #9ba2ad; }
.input-icon input { padding-left: 38px; }
.password-eye-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: #6b7480;
    padding: 2px;
    cursor: pointer;
}
.password-eye-toggle:hover { color: #3D5A80; }
.input-icon input.has-eye { padding-right: 40px; }
.form-actions { display: flex; justify-content: space-between; align-items: center; margin: 8px 0 16px; }
.forgot-link { color: var(--text-light); font-size: .88rem; }
.login-footer { margin-top: 18px; padding-top: 12px; border-top: 1px solid var(--border-color); text-align: center; font-size: .92rem; }
.login-footer a { color: var(--secondary-color); font-weight: 700; }
.password-criteria {
    margin-top: 1rem;
    background: rgba(5, 74, 145, 0.08);
    border: 1px solid rgba(5, 74, 145, 0.15);
    border-radius: 12px;
    padding: 12px 14px;
    color: #5e6f85;
    font-size: 0.9rem;
}

.password-criteria .criterion {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    color: #7c8798;
}

.password-criteria .criterion:last-child {
    margin-bottom: 0;
}

.password-criteria .criterion::before {
    content: "•";
    font-weight: 700;
    color: #9aa6b2;
}

.password-criteria .criterion.ok {
    color: #0f9d58;
}

.password-criteria .criterion.ok::before {
    color: #0f9d58;
}

.complete-page { min-height: 100svh; background: linear-gradient(180deg, #eef5ff, #f7fbff); display: grid; place-items: center; padding: 24px; }
.complete-card { max-width: 620px; width: 100%; background: #fff; border-radius: 14px; padding: 30px; text-align: center; box-shadow: 0 14px 40px rgba(0,0,0,.08); }
.complete-icon { color: #13a10e; font-size: 2.4rem; margin-bottom: .5rem; }
.request-id { margin: 10px 0 18px; color: var(--text-light); }
.complete-actions { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }

@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-content { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero-panel { min-width: 0; }
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .fleet-card-slide { grid-template-columns: 1fr; }
    .fleet-card-image { min-height: 220px; }
    .fleet-card-content { padding: 24px 20px 18px; }
    .auth-left { display: none; }
    .auth-right { flex: 1; padding: 22px; align-items: flex-start; }
    .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    .nav-links { display: none; position: fixed; top: 68px; left: 0; right: 0; background: #fff; padding: 16px 20px; box-shadow: 0 10px 25px rgba(0,0,0,.08); border-bottom: 1px solid #eef0f2; flex-direction: column; align-items: flex-start; }
    .nav-links.open { display: flex; }
    .nav-links > a { color: var(--text-dark); }
    .auth-buttons { margin: 8px 0 0; width: 100%; flex-direction: column; align-items: stretch; }
    .btn-login, .btn-register { text-align: center; width: 100%; }
    .btn-login { color: var(--primary-color) !important; border-color: var(--primary-color); }
    .hamburger { display: inline-flex; }
    .hero { min-height: 92svh; }
    .form-row { grid-template-columns: 1fr; }
    .login-card { padding: 24px; }
    .hero-panel { padding: 18px; }
    .process-grid { grid-template-columns: 1fr; }
    .fleet-spec-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .cta-actions, .complete-actions { flex-direction: column; }
    .cta-actions .btn, .complete-actions .btn { width: 100%; }
    .trust-grid { grid-template-columns: 1fr; }
}
.wizard-page { background: linear-gradient(180deg, #f6f8fb 0%, #eef3fb 100%); }
.wizard-wrap { min-height: 100svh; display: flex; align-items: center; }
.wizard-card { width: 100%; border-radius: 16px; }
.wizard-header h1 { color: var(--primary-color); }
.wizard-brand-logo { width: 160px; max-width: 40vw; height: auto; }
.form-logo-surface {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #293241;
    border-radius: 10px;
    padding: 8px 12px;
    box-shadow: 0 8px 20px rgba(41, 50, 65, .25);
}
.form-logo-surface .wizard-brand-logo,
.form-logo-surface .login-logo {
    margin: 0;
}
.wizard-steps { display: flex; align-items: center; gap: 12px; }
.wizard-progress { width: 100%; height: 8px; border-radius: 999px; background: #dde3ee; overflow: hidden; margin-bottom: 10px; }
.wizard-progress-bar { height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); transition: width .25s ease; }
.wizard-step { display: inline-flex; align-items: center; gap: 8px; color: #8a94a6; font-weight: 700; }
.wizard-step .step-index { width: 32px; height: 32px; min-width: 32px; min-height: 32px; border-radius: 50%; border: 2px solid #cfd6e3; display: inline-flex; align-items: center; justify-content: center; font-size: .9rem; line-height: 1; box-sizing: border-box; flex-shrink: 0; aspect-ratio: 1 / 1; }
.wizard-step.active { color: var(--primary-color); }
.wizard-step.active .step-index { border-color: var(--primary-color); background: var(--primary-color); color: #fff; }
.wizard-step.done { color: #0b7a30; }
.wizard-step.done .step-index { border-color: #0b7a30; background: #0b7a30; color: #fff; }
.wizard-step-divider { flex: 1; height: 2px; background: #d9dfeb; min-width: 30px; }
.form-control.readonly { background: #eef2f8; }
.field-optional { margin-left: 6px; font-size: .78rem; color: #7f8798; font-weight: 600; }
#countrySearchInput { border-color: #d4dbe8; }
.country-dropdown-toggle { display: flex; align-items: center; justify-content: space-between; min-height: 38px; }
.country-label { display: inline-flex; align-items: center; gap: .45rem; }
.country-dropdown-menu { width: 100%; max-height: 300px; overflow: hidden; }
.country-options { max-height: 220px; overflow-y: auto; }
.country-option { display: flex; align-items: center; gap: .5rem; }
.country-flag { width: 1.35rem; text-align: center; }
.country-flag-img { width: 20px; height: 15px; border-radius: 2px; object-fit: cover; box-shadow: 0 0 0 1px rgba(0,0,0,.08); }
.country-name { flex: 1; }
.country-code { color: #5e6f85; font-size: .9rem; }
.country-dropdown-menu .country-code { display: none; }
.register-page .register-navbar { background: rgba(5, 74, 145, .92); backdrop-filter: blur(4px); box-shadow: 0 8px 22px rgba(9, 29, 56, .25); }
.register-page .register-navbar .nav-links > a { color: rgba(255, 255, 255, .94); }
.register-hero { min-height: 100svh; padding-top: 90px; background-image: linear-gradient(120deg, rgba(5,74,145,.84), rgba(15,23,36,.76)), url('/img/landing/hero.png'); background-size: cover; background-position: center; }
.register-page .wizard-wrap { min-height: calc(100svh - 90px); }
.register-page .wizard-card { box-shadow: 0 24px 52px rgba(8, 27, 51, .35); }
@media (max-width: 768px) {
    .wizard-wrap { padding-top: 12px !important; padding-bottom: 12px !important; align-items: flex-start; }
    .wizard-steps { flex-direction: column; align-items: flex-start; }
    .wizard-step-divider { width: 2px; height: 24px; min-width: 0; margin-left: 13px; }
    .wizard-brand-logo { width: 130px; }
    .register-hero { padding-top: 78px; }
    .register-page .wizard-wrap { min-height: calc(100svh - 78px); }
}
