/* ==========================================================================
   Web v2 design system
   ==========================================================================
   New marketing/auth theme for the public-facing site (landing page, login,
   register, forgot password) - matches the "vatpay" mockup: light background,
   bright green accent, dark green panels/footer, rounded cards.

   Scoped with a wv2- prefix throughout so nothing here collides with the
   existing site-wide vatebra.css/style.css classes still used by the
   authenticated dashboard pages (_Layout.cshtml), which this file does not
   touch or attempt to restyle.
   ========================================================================== */

:root {
    --wv2-bg: #F6F8F2;
    --wv2-surface: #FFFFFF;
    --wv2-border: #E7ECE4;
    --wv2-text: #14181B;
    --wv2-text-muted: #667085;
    --wv2-text-faint: #98A2B3;

    --wv2-accent: #17A24A;
    --wv2-accent-dark: #0F7A38;
    --wv2-accent-soft: #E7F6ED;

    --wv2-dark: #0B2E1C;
    --wv2-dark-2: #123D24;

    --wv2-radius-lg: 20px;
    --wv2-radius-md: 14px;
    --wv2-radius-sm: 10px;
    --wv2-shadow-card: 0 2px 10px rgba(16, 24, 40, 0.06);
    --wv2-shadow-lift: 0 16px 40px rgba(11, 46, 28, 0.16);
}

.wv2-scope {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: var(--wv2-bg);
    color: var(--wv2-text);
}

.wv2-scope * {
    box-sizing: border-box;
}

.wv2-container {
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Header ---------- */

.wv2-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--wv2-border);
}

.wv2-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
}

.wv2-logo img {
    height: 30px;
    width: auto;
    display: block;
}

.wv2-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.wv2-nav a {
    color: var(--wv2-text);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    opacity: 0.85;
}

.wv2-nav a:hover,
.wv2-nav a.active {
    color: var(--wv2-accent-dark);
    opacity: 1;
    text-decoration: none;
}

.wv2-header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.wv2-link-muted {
    color: var(--wv2-text);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.wv2-link-muted:hover {
    color: var(--wv2-accent-dark);
    text-decoration: none;
}

.wv2-nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--wv2-border);
    border-radius: 8px;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    color: var(--wv2-text);
}

/* ---------- Buttons ---------- */

.wv2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--wv2-radius-sm);
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform 0.12s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    white-space: nowrap;
    touch-action: manipulation;
}

.wv2-btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.wv2-btn-primary {
    background: var(--wv2-accent);
    border-color: var(--wv2-accent);
    color: #fff;
}

.wv2-btn-primary:hover:not(:disabled) {
    background: var(--wv2-accent-dark);
    border-color: var(--wv2-accent-dark);
    color: #fff;
}

.wv2-btn-primary:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

.wv2-btn-outline {
    background: transparent;
    border-color: var(--wv2-border);
    color: var(--wv2-text);
}

.wv2-btn-outline:hover {
    border-color: var(--wv2-accent);
    color: var(--wv2-accent-dark);
}

.wv2-btn-outline-white {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.wv2-btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: #fff;
}

.wv2-btn-block {
    width: 100%;
}

.wv2-btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

/* ---------- Hero ---------- */

.wv2-hero {
    position: relative !important;
    z-index: 1;
    padding: 65px 0 10px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #f4fbf6 0%, #ffffff 65%);
}

.wv2-hero::before,
.wv2-hero::after {
    content: "";
    position: absolute !important;
    z-index: -1;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.wv2-hero::before {
    top: -140px;
    right: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(23, 162, 74, 0.16) 0%, rgba(23, 162, 74, 0) 70%);
}

.wv2-hero::after {
    bottom: -160px;
    left: -140px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(23, 162, 74, 0.10) 0%, rgba(23, 162, 74, 0) 70%);
}

.wv2-hero-grid {
    display: flex !important;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative !important;
}

.wv2-hero-grid > * {
    flex: 1 1 50%;
    min-width: 0;
}

.wv2-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--wv2-accent-soft);
    color: var(--wv2-accent-dark);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 16px 7px 8px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.wv2-badge-pill .wv2-badge-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--wv2-accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.wv2-hero-title {
    font-size: clamp(2.1rem, 4.2vw, 3.4rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0 0 18px 0;
    color: var(--wv2-text);
}

.wv2-accent-text {
    color: var(--wv2-accent);
}

.wv2-hero-sub {
    font-size: 16px;
    line-height: 1.7;
    color: var(--wv2-text-muted);
    max-width: 480px;
    margin: 0 0 30px 0;
}

.wv2-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.wv2-btn-play {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--wv2-accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
}

.wv2-trust-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wv2-avatar-stack {
    display: flex;
}

.wv2-avatar-stack img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
    object-fit: cover;
    display: block;
    background: var(--wv2-accent-soft);
}

.wv2-avatar-stack img:first-child {
    margin-left: 0;
}

.wv2-trust-row p {
    margin: 0;
    font-size: 13px;
    color: var(--wv2-text-muted);
}

.wv2-trust-row strong {
    color: var(--wv2-text);
}

/* ---------- Hero visual ----------
   Cropped directly from the mockup (blob + photo + floating service cards +
   dashed connector lines as one composition) per explicit instruction to
   match the design pixel-for-pixel rather than hand-recreate it in CSS. */

.wv2-hero-visual {
    position: relative !important;
    isolation: isolate;
    flex: 0 0 auto;
    width: 100%;
    max-width: 480px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 1;
    margin: 0 auto;
}

.wv2-hero-visual img {
    display: block;
    width: 100%;
    height: auto;
}

/* ---------- Feature strip ---------- */

.wv2-feature-strip {
    background: var(--wv2-accent-soft);
    border-radius: var(--wv2-radius-lg);
    padding: 16px 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 16px 0 24px 0;
}

.wv2-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.wv2-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff;
    color: var(--wv2-accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex: 0 0 44px;
}

.wv2-feature-item h6 {
    font-size: 14.5px;
    font-weight: 700;
    margin: 0 0 3px 0;
    color: var(--wv2-text);
}

.wv2-feature-item p {
    font-size: 12.5px;
    color: var(--wv2-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ---------- Sections ---------- */

/* wwwroot/css/style.css has a blanket `section { position: absolute; top:0; left:0;
   width:100%; min-height:80vh; display:flex; ... }` reset that applies to every bare
   <section> tag on the page (this is what broke .wv2-hero before it was hardened below,
   and what breaks any other <section> here) - every property that legacy rule sets has
   to be explicitly reset back to normal-flow values, since a rule that never mentions a
   property (like the old plain ".wv2-section { padding: ... }") does not "win" against
   one that does, regardless of selector specificity. */
.wv2-section {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    min-height: 0 !important;
    display: block !important;
    padding: 0 0 24px 0;
}

.wv2-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.wv2-section-title {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin: 0;
    color: var(--wv2-text);
}

.wv2-section-link {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--wv2-accent-dark);
    text-decoration: none;
    border: 1.5px solid var(--wv2-border);
    padding: 8px 16px;
    border-radius: 999px;
}

.wv2-section-link:hover {
    border-color: var(--wv2-accent);
    text-decoration: none;
    color: var(--wv2-accent-dark);
}

/* ---------- Service cards ---------- */

.wv2-service-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.wv2-service-card {
    background: var(--wv2-surface);
    border: 1px solid var(--wv2-border);
    border-radius: var(--wv2-radius-md);
    padding: 22px 18px;
    text-align: left;
    transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.wv2-service-card:hover {
    box-shadow: var(--wv2-shadow-card);
    transform: translateY(-3px);
    border-color: #DCE7DC;
}

.wv2-service-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
}

.wv2-service-card h6 {
    font-size: 14.5px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--wv2-text);
}

.wv2-service-card p {
    font-size: 12px;
    color: var(--wv2-text-muted);
    margin: 0;
    line-height: 1.5;
}

.wv2-icon-amber { background: #FEF3C7; color: #B45309; }
.wv2-icon-blue { background: #DBEAFE; color: #1D4ED8; }
.wv2-icon-sky { background: #E0F2FE; color: #0369A1; }
.wv2-icon-indigo { background: #E0E7FF; color: #4338CA; }
.wv2-icon-violet { background: #EDE9FE; color: #6D28D9; }
.wv2-icon-green { background: var(--wv2-accent-soft); color: var(--wv2-accent-dark); }

/* ---------- CTA banner ---------- */

.wv2-cta {
    background: linear-gradient(120deg, var(--wv2-dark), var(--wv2-dark-2));
    border-radius: var(--wv2-radius-lg);
    padding: 40px 44px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.wv2-cta h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 6px 0;
}

.wv2-cta p {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    margin: 0;
}

.wv2-cta-phone {
    width: 210px;
    flex: 0 0 auto;
    display: block;
    align-self: flex-end;
    margin-bottom: -40px;
}

/* ---------- Footer ---------- */

/* Footer is a plain white/light section in the mockup - NOT a dark green
   panel like the CTA banner. Text is dark/muted, social icons are small
   solid-dark circles sitting directly on the white background. */
.wv2-footer {
    background: var(--wv2-surface);
    padding: 24px 0 24px 0;
    color: var(--wv2-text-muted);
}

.wv2-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--wv2-border);
}

.wv2-footer-brand img {
    height: 24px;
    display: block;
    margin-bottom: 14px;
}

/* General-purpose "white chip behind logo" utility, used wherever the logo
   sits on a dark green panel (auth visual sides) rather than a white bg. */
.wv2-footer-logo-chip {
    display: inline-block;
    background: #fff;
    padding: 8px 12px;
    border-radius: 10px;
    margin-bottom: 14px;
    line-height: 0;
}

.wv2-footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    max-width: 260px;
    margin: 0 0 16px 0;
}

.wv2-footer-social {
    display: flex;
    gap: 10px;
}

.wv2-footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--wv2-dark);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none;
}

.wv2-footer-social a:hover {
    background: var(--wv2-accent);
    text-decoration: none;
}

.wv2-footer-col h6 {
    color: var(--wv2-text);
    font-size: 13.5px;
    font-weight: 700;
    margin: 0 0 14px 0;
}

.wv2-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wv2-footer-col a,
.wv2-footer-col p {
    color: var(--wv2-text-muted);
    font-size: 13px;
    text-decoration: none;
    margin: 0;
}

.wv2-footer-col a:hover {
    color: var(--wv2-accent-dark);
    text-decoration: none;
}

.wv2-footer-col .wv2-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.wv2-footer-col .wv2-footer-contact-item i {
    color: var(--wv2-accent);
    font-size: 12px;
    margin-top: 2px;
    flex: 0 0 auto;
}

.wv2-footer-bottom {
    padding-top: 18px;
    text-align: center;
    font-size: 12.5px;
    color: var(--wv2-text-faint);
}

/* ---------- Auth screens ----------
   Login, Register and Forgot Password all share the same rounded, shadowed
   two-panel card floating on the page's pale background. */

.wv2-auth-shell {
    max-width: 1120px;
    min-height: 600px;
    margin: 56px auto;
    display: flex !important;
    flex-flow: row nowrap;
    align-items: stretch;
    background: var(--wv2-surface);
    border-radius: var(--wv2-radius-lg);
    box-shadow: var(--wv2-shadow-lift);
    overflow: hidden;
}

.wv2-auth-shell.wv2-auth-narrow {
    max-width: 480px;
    margin: 0 auto;
}

.wv2-auth-form-side {
    flex: 1 1 50%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 64px;
}

.wv2-auth-form-inner {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.wv2-auth-logo {
    margin-bottom: 36px;
}

.wv2-auth-logo img {
    height: 28px;
}

.wv2-auth-title {
    font-size: 25px;
    font-weight: 800;
    margin: 0 0 6px 0;
    color: var(--wv2-text);
}

.wv2-auth-sub {
    font-size: 13.5px;
    color: var(--wv2-text-muted);
    margin: 0 0 28px 0;
    line-height: 1.6;
}

.wv2-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--wv2-accent-dark);
    text-decoration: none;
    margin-bottom: 22px;
}

.wv2-back-link:hover {
    text-decoration: none;
    color: var(--wv2-accent);
}

/* ---------- Form elements ---------- */

.wv2-form-group {
    margin-bottom: 16px;
}

.wv2-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.wv2-form-label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--wv2-text);
    margin-bottom: 6px;
}

.wv2-input,
.wv2-scope input.wv2-input {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border-radius: var(--wv2-radius-sm);
    border: 1.5px solid var(--wv2-border);
    background: #fff;
    font-size: 13.5px;
    color: var(--wv2-text);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.wv2-input::placeholder {
    color: var(--wv2-text-faint);
}

.wv2-input:focus {
    outline: none;
    border-color: var(--wv2-accent);
    box-shadow: 0 0 0 3px var(--wv2-accent-soft);
}

.wv2-input-wrap {
    position: relative;
}

.wv2-input-wrap .wv2-input {
    padding-right: 42px;
}

.wv2-input-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--wv2-text-faint);
    font-size: 14px;
    user-select: none;
}

.wv2-input-toggle:hover {
    color: var(--wv2-accent-dark);
}

/* ---------- Icon-in-input fields (new register design) ---------- */

.wv2-input-icon-wrap {
    position: relative;
}

.wv2-input-icon-wrap .wv2-input {
    padding-left: 42px;
}

.wv2-input-icon-wrap.wv2-input-wrap .wv2-input {
    padding-left: 42px;
    padding-right: 42px;
}

.wv2-input-lead-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--wv2-text-faint);
    font-size: 14px;
    pointer-events: none;
}

/* Phone number field with a country-code segment on the left */
.wv2-phone-field {
    display: flex;
    align-items: stretch;
    border: 1.5px solid var(--wv2-border);
    border-radius: var(--wv2-radius-sm);
    background: #fff;
    overflow: hidden;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.wv2-phone-field:focus-within {
    border-color: var(--wv2-accent);
    box-shadow: 0 0 0 3px var(--wv2-accent-soft);
}

.wv2-phone-code {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    border-right: 1.5px solid var(--wv2-border);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--wv2-text);
    white-space: nowrap;
    flex: 0 0 auto;
}

.wv2-phone-flag {
    width: 18px;
    height: 12px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--wv2-accent) 33%, #fff 33%, #fff 66%, var(--wv2-accent) 66%);
    flex: 0 0 auto;
}

.wv2-phone-field input.wv2-input {
    border: none;
    border-radius: 0;
    box-shadow: none !important;
    flex: 1 1 auto;
}

.wv2-phone-field input.wv2-input:focus {
    box-shadow: none;
}

/* Password strength meter */
.wv2-strength-meter {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 11.5px;
    color: var(--wv2-text-muted);
}

.wv2-strength-label {
    font-weight: 600;
    flex: 0 0 auto;
}

.wv2-strength-bars {
    display: flex;
    gap: 4px;
    flex: 1 1 auto;
}

.wv2-strength-bars span {
    height: 4px;
    flex: 1 1 0;
    border-radius: 2px;
    background: var(--wv2-border);
}

.wv2-strength-hint {
    font-size: 11px;
    color: var(--wv2-text-faint);
    margin-top: 4px;
}

.wv2-field-hint {
    font-size: 11px;
    margin-top: 5px;
    min-height: 14px;
}

.wv2-forgot-row {
    display: flex;
    justify-content: flex-end;
    margin: -6px 0 18px 0;
}

.wv2-forgot-row a {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--wv2-accent-dark);
    text-decoration: none;
}

.wv2-forgot-row a:hover {
    text-decoration: underline;
}

.wv2-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 4px 0 20px 0;
}

.wv2-checkbox-row input {
    margin-top: 3px;
}

.wv2-checkbox-row label {
    font-size: 12.5px;
    color: var(--wv2-text-muted);
    line-height: 1.5;
}

.wv2-checkbox-row a {
    color: var(--wv2-accent-dark);
    text-decoration: none;
    font-weight: 600;
}

.wv2-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0;
    color: var(--wv2-text-faint);
    font-size: 12px;
}

.wv2-divider::before,
.wv2-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--wv2-border);
}

.wv2-social-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 26px;
}

.wv2-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    border-radius: var(--wv2-radius-sm);
    border: 1.5px solid var(--wv2-border);
    background: #fff;
    color: var(--wv2-text);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.wv2-social-btn:hover {
    border-color: #d0d6ce;
    background: #fafbf9;
}

.wv2-bottom-link {
    text-align: center;
    font-size: 13px;
    color: var(--wv2-text-muted);
    margin-top: 24px;
}

.wv2-bottom-link a {
    color: var(--wv2-accent-dark);
    font-weight: 700;
    text-decoration: none;
}

.wv2-bottom-link a:hover {
    text-decoration: underline;
}

.text-danger.wv2-validation {
    font-size: 11.5px;
    display: block;
    margin-top: 4px;
}

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

.wv2-btn-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: wv2Spin 0.7s linear infinite;
    flex-shrink: 0;
}

/* ---------- Auth visual side (green panel + phone mockup) ---------- */

.wv2-auth-visual-side {
    background: linear-gradient(150deg, var(--wv2-dark-2), var(--wv2-dark));
    position: relative !important;
    isolation: isolate;
    flex: 1 1 50%;
    min-width: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 50px;
    overflow: hidden;
}

.wv2-auth-visual-side::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    top: -120px;
    right: -120px;
}

.wv2-auth-visual-side::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
    bottom: -80px;
    left: -60px;
}

.wv2-auth-visual-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 34px;
    max-width: 460px;
}

.wv2-auth-visual-copy h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.35;
    margin: 0 0 14px 0;
}

.wv2-auth-checklist {
    list-style: none;
    margin: 0 0 14px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wv2-auth-checklist li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,0.85);
    font-size: 13.5px;
    font-weight: 500;
}

.wv2-auth-checklist i {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--wv2-accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    flex: 0 0 18px;
}

.wv2-icon-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    margin-bottom: 22px;
}

/* Light variant - used on white form sides (e.g. Forgot Password) */
.wv2-icon-circle.wv2-icon-circle-light {
    background: var(--wv2-accent-soft);
    border: none;
    color: var(--wv2-accent-dark);
}

/* Small white "safe with us" style callout card, visual side */
.wv2-safe-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border-radius: var(--wv2-radius-lg);
    box-shadow: var(--wv2-shadow-lift);
    padding: 16px 18px;
}

.wv2-safe-card .wv2-feature-item-icon {
    flex: 0 0 40px;
}

.wv2-safe-card h6 {
    margin: 0 0 2px 0;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--wv2-text);
}

.wv2-safe-card p {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    color: var(--wv2-text-muted);
}

/* Light info banner (e.g. "check your spam folder") */
.wv2-info-banner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--wv2-bg);
    border-radius: var(--wv2-radius-sm);
    padding: 14px 16px;
    font-size: 12.5px;
    color: var(--wv2-text-muted);
    line-height: 1.5;
}

.wv2-info-banner .wv2-feature-item-icon {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    font-size: 11px;
}

/* Forgot Password decorative graphic placeholder (padlock + envelope + paper
   plane) - hand-built with icons for now; swap for a cropped mockup asset
   like the Register/Login graphics once available. */
.wv2-fp-graphic {
    position: relative;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wv2-fp-graphic-blob {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(23, 162, 74, 0.08);
}

.wv2-fp-graphic-lock {
    position: relative;
    width: 88px;
    height: 88px;
    border-radius: 26px;
    background: linear-gradient(160deg, var(--wv2-accent), var(--wv2-accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    box-shadow: var(--wv2-shadow-card);
}

.wv2-fp-graphic-envelope {
    position: absolute;
    left: 12%;
    bottom: 14%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--wv2-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: var(--wv2-shadow-card);
}

.wv2-fp-graphic-plane {
    position: absolute;
    right: 14%;
    top: 10%;
    color: var(--wv2-accent);
    font-size: 26px;
    transform: rotate(-20deg);
}

/* Simple centered copyright bar below the auth card */
.wv2-copyright-bar {
    text-align: center;
    font-size: 12.5px;
    color: var(--wv2-text-muted);
    padding: 16px 0;
    border-top: 1px solid var(--wv2-border);
    width: 100%;
}

/* ---------- Light auth visual side (new register design) ----------
   The register page's visual side is a light/pale panel, not the dark
   green gradient used on Login/Forgot Password - override the shared
   .wv2-auth-visual-side treatment for this specific page. */

.wv2-auth-visual-side.wv2-visual-light {
    background: var(--wv2-bg);
}

.wv2-auth-visual-side.wv2-visual-light::before {
    background: rgba(23, 162, 74, 0.06);
}

.wv2-auth-visual-side.wv2-visual-light::after {
    border-color: rgba(11, 46, 28, 0.08);
}

.wv2-visual-light .wv2-auth-visual-copy h4 {
    color: var(--wv2-text);
}

.wv2-visual-light .wv2-auth-visual-copy p {
    color: var(--wv2-text-muted) !important;
}

.wv2-feature-item-lg-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 22px 0;
}

.wv2-feature-item-lg {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.wv2-feature-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--wv2-accent-soft);
    color: var(--wv2-accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex: 0 0 40px;
}

.wv2-feature-item-lg h6 {
    margin: 0 0 2px 0;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--wv2-text);
}

.wv2-feature-item-lg p {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    color: var(--wv2-text-muted);
}

/* Decorative shield + mini transaction card graphic */
.wv2-visual-graphic {
    position: relative;
    margin-top: 10px;
}

.wv2-visual-graphic-img {
    display: block;
    width: 100%;
    max-width: 400px;
    height: auto;
}

.wv2-visual-blob-soft {
    position: absolute;
    left: -10px;
    bottom: -20px;
    width: 220px;
    height: 150px;
    border-radius: 50%;
    background: rgba(23, 162, 74, 0.08);
}

/* Header row: title on the left, "Already have an account? Log in" on the right */
.wv2-auth-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.wv2-auth-header-row .wv2-auth-title {
    margin-bottom: 0;
}

.wv2-auth-header-row .wv2-bottom-link {
    margin-top: 4px;
    text-align: right;
    font-size: 12.5px;
    white-space: nowrap;
}

/* Branded social buttons */
.wv2-social-btn img {
    width: 16px;
    height: 16px;
}

/* Remember me + Forgot password row (Login) */
.wv2-remember-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin: 4px 0 22px 0;
}

.wv2-remember-row .wv2-checkbox-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--wv2-text-muted);
    cursor: pointer;
}

.wv2-remember-row .wv2-checkbox-inline input {
    accent-color: var(--wv2-accent-dark);
    width: 15px;
    height: 15px;
}

.wv2-remember-row a {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--wv2-accent-dark);
    text-decoration: none;
}

.wv2-remember-row a:hover {
    text-decoration: underline;
}

/* Bottom trust strip (Login) */
.wv2-trust-strip {
    max-width: 1120px;
    margin: 0 auto 56px auto;
    padding: 22px 40px 0 40px;
    border-top: 1px solid var(--wv2-border);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.wv2-trust-strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wv2-trust-strip-item .wv2-feature-item-icon {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    font-size: 13px;
}

.wv2-trust-strip-item h6 {
    margin: 0 0 2px 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--wv2-text);
}

.wv2-trust-strip-item p {
    margin: 0;
    font-size: 11.5px;
    color: var(--wv2-text-muted);
}

@media (max-width: 900px) {
    .wv2-trust-strip { grid-template-columns: 1fr; padding-left: 24px; padding-right: 24px; }
}

/* ---------- Responsive ---------- */

@media (max-width: 992px) {
    .wv2-nav { display: none; }
    .wv2-nav-toggle { display: inline-flex; }

    .wv2-hero { padding: 130px 0 50px 0; }
    .wv2-hero-grid { flex-flow: column nowrap; text-align: center; }
    .wv2-hero-grid > * { flex: 1 1 auto; }
    .wv2-hero-sub { margin-left: auto; margin-right: auto; }
    .wv2-hero-actions { justify-content: center; }
    .wv2-trust-row { justify-content: center; }
    .wv2-hero-visual { margin-top: 30px; max-width: 340px; }

    .wv2-feature-strip { grid-template-columns: 1fr 1fr; margin-bottom: 60px; }
    .wv2-service-grid { grid-template-columns: repeat(3, 1fr); }
    .wv2-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 20px; }

    .wv2-auth-shell {
        flex-flow: column nowrap;
        margin: 0;
        max-width: 100%;
        min-height: 100vh;
        border-radius: 0;
        box-shadow: none;
    }
    .wv2-auth-visual-side { display: none !important; }
    .wv2-auth-form-side { padding: 40px 24px 50px 24px; }
}

@media (max-width: 576px) {
    .wv2-service-grid { grid-template-columns: 1fr 1fr; }
    .wv2-feature-strip { grid-template-columns: 1fr; padding: 22px; }
    .wv2-cta { flex-direction: column; text-align: center; padding: 32px 24px; }
    .wv2-footer-grid { grid-template-columns: 1fr; }
    .wv2-form-row { grid-template-columns: 1fr; }
    .wv2-social-row { grid-template-columns: 1fr; }
    .wv2-auth-form-side { padding: 90px 18px 40px 18px; }
}
