* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

:root {
    --page-bg: #eef6f5;
    --surface: #ffffff;
    --surface-soft: #f5faf9;
    --text: #0b1739;
    --muted: #64748b;
    --muted-light: #94a3b8;
    --line: #dce8e6;
    --primary: #25bba0;
    --primary-strong: #12b7aa;
    --primary-soft: rgba(37, 187, 160, 0.11);
    --primary-ring: rgba(37, 187, 160, 0.22);
    --accent: #52c2a5;
}

body {
    background: #f4f6f8;
    color: var(--text);
    overflow-x: hidden;
}

.container-main {
    display: flex;
    min-height: 100vh;
    padding: 0 10px 0 0;
    gap: 10px;
}

.left {
    --left-panel-pad: 38px;
    width: 58%;
    background: #ffffff;
    border-radius: 0 18px 18px 0;
    padding: 24px var(--left-panel-pad) 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 0;
    border-right: 1px solid rgba(11, 23, 57, 0.04);
    box-shadow: none;
}

.left::before {
    content: "";
    position: absolute;
    top: 28px;
    right: 32px;
    width: 80px;
    height: 48px;
    background-image: radial-gradient(circle, #b9ddd9 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    display: none;
}

.left::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 220px;
    height: 220px;
    background: transparent;
    border-radius: 50%;
}

.property-motion {
    position: absolute;
    top: 24px;
    right: 26px;
    width: 285px;
    height: 195px;
    color: var(--primary-strong);
    opacity: 0.18;
    pointer-events: none;
}

.property-motion svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.property-outline {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 720;
    animation: drawProperty 5.5s ease-in-out infinite;
}

.property-window {
    fill: rgba(37, 187, 160, 0.12);
    stroke: currentColor;
    stroke-width: 1.5;
    animation: windowGlow 3.8s ease-in-out infinite;
}

.property-window:nth-of-type(2n) {
    animation-delay: 0.7s;
}

.heritage-detail {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 240;
    animation: drawHeritage 5.5s 1s ease-in-out infinite;
}

.property-sun {
    fill: rgba(37, 187, 160, 0.08);
    stroke: currentColor;
    stroke-width: 1.4;
    transform-origin: center;
    animation: breatheProperty 4s ease-in-out infinite;
}

.property-pin {
    transform-origin: center;
    animation: floatPropertyPin 3s ease-in-out infinite;
}

.property-scan {
    stroke: var(--primary);
    stroke-width: 1.5;
    stroke-dasharray: 5 6;
    animation: scanProperty 3.2s ease-in-out infinite;
}

@keyframes drawProperty {
    0%,
    12% {
        stroke-dashoffset: 720;
        opacity: 0.35;
    }
    42%,
    82% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 0.35;
    }
}

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

@keyframes scanProperty {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    75% {
        transform: translateY(92px);
        opacity: 1;
    }
    90% {
        opacity: 0;
    }
}

@keyframes drawHeritage {
    0%,
    18% {
        stroke-dashoffset: 240;
        opacity: 0.2;
    }
    48%,
    86% {
        stroke-dashoffset: 0;
        opacity: 0.9;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 0.25;
    }
}

@keyframes windowGlow {
    0%,
    100% {
        fill: rgba(37, 187, 160, 0.06);
    }
    50% {
        fill: rgba(37, 187, 160, 0.24);
    }
}

@keyframes breatheProperty {
    0%,
    100% {
        transform: scale(0.92);
        opacity: 0.45;
    }
    50% {
        transform: scale(1.06);
        opacity: 1;
    }
}

.login-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    position: relative;
    z-index: 1;
}

.logo-icon {
    width: 138px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-sub {
    font-size: 13px;
    color: var(--muted);
    font-weight: 400;
    margin-left: 18px;
    letter-spacing: 0.2px;
}

.tag {
    margin-top: 6px;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

h1 {
    margin-top: 6px;
    font-size: 31px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.12;
    letter-spacing: 0;
    position: relative;
    z-index: 1;
}

h1 span {
    color: var(--primary);
}

.desc {
    font-size: 12.25px;
    color: var(--muted);
    line-height: 1.48;
    max-width: 480px;
    position: relative;
    z-index: 1;
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    position: relative;
    z-index: 1;
    margin-top: 10px;
}

.feature-card {
    background: var(--surface);
    padding: 8px;
    border-radius: 8px;
    box-shadow: none;
    transition:
        border-color 0.2s,
        background 0.2s;
    cursor: default;
    border: 1px solid #e4e9ee;
}

.feature-card:hover {
    border-color: #b9d8d3;
    background: #f8fbfa;
}

.feature-card h3 {
    margin-top: 6px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

.feature-card p {
    margin-top: 3px;
    font-size: 11px;
    color: var(--muted-light);
    line-height: 1.4;
}

.card-icon-box {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon-box svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card-icon-box.primary,
.card-icon-box.blue,
.card-icon-box.amber,
.card-icon-box.purple {
    background: #eef7f5;
    color: var(--primary-strong);
}

.brands {
    margin-top: 10px;
    padding-top: 2px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.brands-label {
    font-size: 9.5px;
    font-weight: 600;
    color: var(--muted-light);
    letter-spacing: 1.4px;
    text-transform: uppercase;
    text-align: center;
}

.brand-marquee {
    width: 100%;
    margin-top: 7px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent,
        #000 5%,
        #000 95%,
        transparent
    );
    mask-image: linear-gradient(
        90deg,
        transparent,
        #000 5%,
        #000 95%,
        transparent
    );
}

.brand-track {
    display: flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    animation: trustedLogoFloat 34s linear infinite;
    will-change: transform;
}

.brand-set {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-item {
    width: 118px;
    height: 38px;
    display: flex;
    flex: 0 0 118px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 3px 6px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    box-shadow: none;
    opacity: 0.72;
    transition: opacity 0.2s;
}

.brand-item:hover {
    opacity: 1;
}

.brand-item.brand-dark {
    border-color: rgba(37, 187, 160, 0.24);
    background: #0b1739;
}

.brand-item img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 30px;
    object-fit: contain;
}

.brand-item.brand-motia img {
    max-height: 34px;
}

.brand-item.brand-wide {
    width: 150px;
    flex-basis: 150px;
}

.brand-item.brand-wide img {
    max-width: 100%;
}

.brand-item.brand-makaan img {
    max-width: 100%;
    max-height: 31px;
}

@keyframes trustedLogoFloat {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(calc(-50% - 4px), 0, 0);
    }
}

.brand-wordmark {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #0b1739;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.brand-monogram {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--primary-soft);
    color: var(--primary-strong);
    font-size: 9px;
    letter-spacing: 0;
}

@media (prefers-reduced-motion: reduce) {
    .brand-track {
        animation: none;
    }
    .property-outline,
    .property-pin,
    .property-scan,
    .property-window,
    .property-sun,
    .heritage-detail,
    .forgot-visual::after {
        animation: none !important;
    }
}

.bottom-tagline {
    margin-top: 76px;
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.tagline-tick {
    width: 14px;
    height: 14px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: middle;
    margin-right: 3px;
    margin-top: -1px;
}

.right {
    width: auto;
    min-width: 0;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #f7f9fa;
    border-radius: 18px;
    overflow: hidden;
    isolation: isolate;
    margin: 10px 0;
}

.right::before,
.right::after {
    display: none;
}

.login-box {
    width: calc(100% - 48px);
    max-width: 410px;
    background: #fff;
    padding: 24px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(11, 23, 57, 0.06);
    border: 1px solid #e1e7eb;
}

.login-copyright {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 16px;
    color: #94a3b8;
    font-size: 9.5px;
    line-height: 1.4;
    text-align: center;
}

.login-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 7px;
    color: var(--primary-strong);
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 1.25px;
    text-transform: uppercase;
}

.login-eyebrow::before {
    content: "";
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--primary);
}

.login-box h2 {
    font-size: 23px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.25;
}

.sub-text {
    margin-top: 3px;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.45;
}

.form-group {
    margin-top: 14px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
    line-height: 1.25;
}

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

.input-wrap .input-icon {
    position: absolute;
    left: 13px;
    width: 16px;
    height: 16px;
    color: var(--muted-light);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.input-wrap .input-icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.input-wrap input.form-control {
    width: 100%;
    padding: 10px 42px 10px 40px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    outline: none;
    background: #f8fafc;
    font-size: 13px;
    color: var(--text);
    transition:
        border-color 0.2s,
        background 0.2s,
        box-shadow 0.2s;
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    height: 44px;
    position: relative;
    z-index: 1;
}

.input-wrap input.form-control:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px var(--primary-ring);
}

.input-wrap input.form-control::placeholder {
    color: #b0bec5;
}

.eye-toggle {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 8px;
    color: var(--muted-light);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 6px;
    transition:
        background 0.15s,
        color 0.15s;
}

.eye-toggle:hover {
    color: #64748b;
    background: rgba(0, 0, 0, 0.05);
}

.eye-toggle i {
    font-size: 18px;
    line-height: 1;
}

.options-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
}

.remember {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    color: var(--muted);
    cursor: pointer;
    user-select: none;
}

.remember input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: var(--primary);
    cursor: pointer;
    margin: 0;
}

.forgot-link {
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 11.5px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-family: inherit;
    transition: color 0.2s;
    cursor: pointer;
}

.forgot-link i {
    margin-right: 2px;
    font-size: 12px;
}

.forgot-link:hover {
    color: var(--primary-strong);
}

.login-submit-btn {
    width: 100%;
    margin-top: 14px;
    min-height: 44px;
    padding: 11px 14px;
    border: none;
    border-radius: 10px;
    background: #12b7aa;
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: none;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    position: relative;
}

.login-submit-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    background: #007f79;
    box-shadow: none;
}

.login-submit-btn:active:not(:disabled) {
    transform: translateY(0);
}

.login-submit-btn:disabled {
    opacity: 1;
    cursor: wait;
    background: #007f79;
    transform: none;
}

.login-submit-btn svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.login-submit-btn .spinner-border {
    width: 16px;
    height: 16px;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.3);
    border-right-color: #fff;
}

.login-progress {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 170px;
    color: #fff;
    font-size: 12.5px;
    font-weight: 650;
    letter-spacing: 0.05px;
}

.sys-status {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--primary);
    font-weight: 500;
}

.status-line {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sys-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e8edf2;
}

.divider span {
    font-size: 10px;
    color: var(--muted-light);
    font-weight: 500;
    white-space: nowrap;
}

.help-row {
    display: flex;
    gap: 8px;
    margin-top: 9px;
}

.help-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    padding: 8px 7px;
    border-radius: 8px;
    min-width: 0;
    color: inherit;
    text-align: left;
    text-decoration: none;
    font-family: inherit;
    cursor: pointer;
    transition:
        border-color 0.2s,
        background 0.2s,
        transform 0.2s;
}

.forgot-modal .modal-dialog {
    max-width: 450px;
}
.forgot-modal .modal-content {
    overflow: hidden;
    border: 1px solid #dfe7e8;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 55px rgba(11, 23, 57, 0.12);
}
.forgot-modal .modal-header {
    display: block;
    padding: 28px 30px 12px;
    border: 0;
    text-align: left;
}
.forgot-modal .btn-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 28px;
    height: 28px;
    padding: 0;
    border-radius: 8px;
    background-size: 10px;
    opacity: 0.55;
}
.forgot-modal .btn-close:hover {
    background-color: #f2f6f6;
    opacity: 0.85;
}
.forgot-visual {
    position: relative;
    width: 62px;
    height: 62px;
    margin-bottom: 18px;
    display: grid;
    place-items: center;
    border: 1px solid #cfe8e4;
    border-radius: 16px;
    background: #f2faf8;
    color: var(--primary-strong);
}
.forgot-visual::after {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(1, 151, 144, 0.16);
    border-radius: 11px;
    animation: forgotPulse 2.8s ease-in-out infinite;
}
.forgot-visual svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.forgot-kicker {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 7px;
    color: var(--primary-strong);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 1.25px;
    text-transform: uppercase;
}
.forgot-kicker::before {
    content: "";
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--primary);
}
.forgot-modal .modal-title {
    color: var(--text);
    font-size: 23px;
    line-height: 1.25;
    font-weight: 800;
}
.forgot-modal .modal-body {
    padding: 0 30px 30px;
}
.forgot-copy {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.7;
}
.forgot-modal .form-label {
    margin-bottom: 7px;
    color: #26344b;
    font-size: 11.5px;
    font-weight: 650;
}
.forgot-input-wrap {
    position: relative;
}
.forgot-input-wrap > i {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: #8b99ab;
    font-size: 17px;
}
.forgot-modal .form-control {
    height: 46px;
    padding: 10px 14px 10px 42px;
    border: 1px solid #dce4e8;
    border-radius: 10px;
    background: #f8fafb;
    color: var(--text);
    font-size: 13px;
    box-shadow: none;
}
.forgot-modal .form-control:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px var(--primary-ring);
}
.forgot-submit {
    width: 100%;
    min-height: 46px;
    margin-top: 18px;
    border: 0;
    border-radius: 10px;
    background: var(--primary-strong);
    color: #fff;
    font-size: 13px;
    font-weight: 650;
}
.forgot-submit:hover {
    background: #007f79;
    color: #fff;
}
.forgot-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    color: #7a8798;
    font-size: 10.5px;
}
.forgot-trust i {
    color: var(--primary-strong);
    font-size: 14px;
}
.forgot-back {
    width: 100%;
    margin-top: 8px;
    padding: 8px;
    border: 0;
    background: transparent;
    color: #64748b;
    font-size: 11.5px;
    font-weight: 550;
}
.forgot-back:hover {
    color: var(--primary-strong);
}
@keyframes forgotPulse {
    0%,
    100% {
        transform: scale(0.94);
        opacity: 0.45;
    }
    50% {
        transform: scale(1.04);
        opacity: 1;
    }
}

.faq-modal .modal-dialog {
    max-width: 560px;
}
.faq-modal .modal-content {
    overflow: hidden;
    border: 1px solid #dfe7e8;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 55px rgba(11, 23, 57, 0.12);
}
.faq-modal .modal-header {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 26px 28px 20px;
    border-bottom: 1px solid #e8edef;
    background: #fbfcfc;
}
.faq-heading-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    border: 1px solid #cfe8e4;
    border-radius: 13px;
    background: #f2faf8;
    color: var(--primary-strong);
    font-size: 24px;
}
.faq-modal .modal-title {
    margin: 2px 38px 3px 0;
    color: var(--text);
    font-size: 21px;
    line-height: 1.25;
    font-weight: 800;
}
.faq-subtitle {
    margin: 0;
    color: var(--muted);
    font-size: 11.5px;
    line-height: 1.55;
}
.faq-modal .btn-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 28px;
    height: 28px;
    padding: 0;
    border-radius: 8px;
    background-size: 10px;
    opacity: 0.55;
}
.faq-modal .btn-close:hover {
    background-color: #eef3f3;
    opacity: 0.85;
}
.faq-modal .modal-body {
    max-height: min(62vh, 560px);
    padding: 18px 28px 10px;
    overflow-y: auto;
}
.faq-modal .accordion {
    display: grid;
    gap: 8px;
}
.faq-modal .accordion-item {
    overflow: hidden;
    border: 1px solid #e2e8ea;
    border-radius: 11px;
    background: #fff;
}
.faq-modal .accordion-button {
    min-height: 50px;
    gap: 11px;
    padding: 12px 14px;
    background: #fff;
    color: #29374c;
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 12.5px;
    font-weight: 650;
    line-height: 1.45;
    box-shadow: none;
}
.faq-modal .accordion-button:not(.collapsed) {
    background: #f5faf9;
    color: var(--primary-strong);
    box-shadow: none;
}
.faq-modal .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}
.faq-modal .accordion-button::after {
    width: 13px;
    height: 13px;
    background-size: 13px;
    opacity: 0.55;
}
.faq-number {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    background: #eef5f4;
    color: #637388;
    font-size: 9.5px;
    font-weight: 750;
}
.faq-modal .accordion-button:not(.collapsed) .faq-number {
    background: #dff4ef;
    color: var(--primary-strong);
}
.faq-modal .accordion-body {
    padding: 2px 50px 15px;
    color: #64748b;
    font-size: 11.5px;
    line-height: 1.7;
}
.faq-support {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 16px;
    padding: 15px 28px 22px;
    color: #64748b;
    font-size: 11px;
}
.faq-support strong {
    display: block;
    margin-bottom: 2px;
    color: #26344b;
    font-size: 11.5px;
}
.faq-support-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 12px;
    border: 1px solid #cfe1df;
    border-radius: 9px;
    color: var(--primary-strong);
    text-decoration: none;
    font-size: 11px;
    font-weight: 650;
}
.faq-support-link:hover {
    border-color: var(--primary);
    background: #f3faf8;
    color: #007f79;
}

@media (max-width: 575px) {
    .faq-modal .modal-dialog,
    .forgot-modal .modal-dialog {
        margin: 14px;
    }
    .faq-modal .modal-header {
        padding: 22px 20px 17px;
    }
    .faq-modal .modal-body {
        padding: 14px 20px 8px;
    }
    .faq-support {
        align-items: flex-start;
        padding: 14px 20px 20px;
    }
    .faq-modal .accordion-body {
        padding-left: 49px;
        padding-right: 18px;
    }
}

.help-concierge {
    position: fixed;
    right: 24px;
    bottom: 0;
    z-index: 1060;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    pointer-events: none;
    transform: translateY(118px);
    opacity: 0;
    transition:
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.35s ease;
}
.help-concierge.is-visible {
    transform: translateY(-20px);
    opacity: 1;
    pointer-events: auto;
}
.concierge-message {
    position: relative;
    width: 205px;
    margin-bottom: 12px;
    padding: 13px 35px 12px 14px;
    border: 1px solid #dce6e7;
    border-radius: 13px 13px 4px 13px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(11, 23, 57, 0.11);
    color: #526075;
    font-size: 11px;
    line-height: 1.45;
}
.concierge-message strong {
    display: block;
    margin-bottom: 2px;
    color: var(--text);
    font-size: 12.5px;
}
.concierge-open {
    margin-top: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--primary-strong);
    font-size: 10.5px;
    font-weight: 700;
}
.concierge-close {
    position: absolute;
    top: 7px;
    right: 8px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #94a3b8;
    font-size: 15px;
}
.concierge-close:hover {
    background: #f1f5f5;
    color: #526075;
}
.concierge-robot {
    position: relative;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 19px 19px 15px 15px;
    background: var(--primary-strong);
    color: #fff;
    box-shadow: 0 12px 30px rgba(1, 127, 121, 0.24);
    cursor: pointer;
    animation: conciergeFloat 3s ease-in-out infinite;
}
.concierge-robot::before {
    content: "";
    position: absolute;
    top: -8px;
    width: 2px;
    height: 9px;
    border-radius: 2px;
    background: var(--primary-strong);
}
.concierge-robot::after {
    content: "";
    position: absolute;
    top: -12px;
    width: 7px;
    height: 7px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--primary-strong);
}
.concierge-robot svg {
    width: 39px;
    height: 39px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.robot-eye {
    fill: #fff;
    stroke: none;
    transform-origin: center;
    animation: robotBlink 4.5s infinite;
}
@keyframes conciergeFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}
@keyframes robotBlink {
    0%,
    45%,
    51%,
    100% {
        transform: scaleY(1);
    }
    48% {
        transform: scaleY(0.12);
    }
}

@media (max-width: 575px) {
    .help-concierge {
        right: 12px;
    }
    .help-concierge.is-visible {
        transform: translateY(-12px);
    }
    .concierge-message {
        width: 175px;
    }
    .concierge-robot {
        width: 56px;
        height: 56px;
        border-radius: 17px 17px 13px 13px;
    }
    .concierge-robot svg {
        width: 34px;
        height: 34px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .help-concierge {
        transition: none;
    }
    .concierge-robot,
    .robot-eye {
        animation: none !important;
    }
}

.help-box:hover {
    border-color: rgba(37, 187, 160, 0.4);
    background: #fff;
    color: inherit;
    transform: translateY(-1px);
}

.help-icon {
    width: 28px;
    height: 28px;
    display: grid;
    flex: 0 0 28px;
    place-items: center;
    border-radius: 8px;
    background: var(--primary-soft);
    color: var(--primary-strong);
    font-size: 14px;
}

.help-box h4 {
    font-size: 11px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
    line-height: 1.25;
}

.help-box p {
    font-size: 10px;
    color: var(--muted-light);
    line-height: 1.35;
    word-break: break-word;
}

.help-box small {
    display: block;
    margin-top: 1px;
    color: var(--muted-light);
    font-size: 9px;
    line-height: 1.2;
}

.support-accent {
    color: var(--primary) !important;
}

#location-warning {
    font-size: 11px;
    border-radius: 10px;
    padding: 8px 12px;
    margin-top: 10px;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

@media (max-width: 1100px) {
    .left {
        --left-panel-pad: 24px;
        width: 55%;
        padding: 22px var(--left-panel-pad) 18px;
    }
    .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    h1 {
        font-size: 30px;
    }
    .login-box {
        width: calc(100% - 30px);
        padding: 22px;
    }
    .help-row {
        flex-wrap: wrap;
    }
    .help-box {
        flex: 1 1 calc(50% - 4px);
    }
    .property-motion {
        display: none;
    }
}

@media (max-width: 820px) {
    body {
        overflow-y: auto;
    }

    .container-main {
        flex-direction: column;
        padding: 0;
        min-height: 100vh;
    }

    .left {
        display: none;
    }

    .right {
        width: 100%;
        min-height: 100vh;
        margin: 0;
        padding: 20px 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .login-box {
        width: 92%;
        margin-top: 0;
        padding: 22px 20px;
    }

    .login-copyright {
        bottom: 10px;
        font-size: 9px;
    }
}

.bottom-tagline-row {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10.5px;
    color: var(--muted-light);
    font-weight: 500;
    gap: 18px;
}

.bottom-tagline-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bottom-tagline-right a {
    font-size: 10.5px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.bottom-tagline-right a:hover {
    color: var(--primary-strong);
    text-decoration: underline;
}

.tagline-tick {
    width: 14px;
    height: 14px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2;
}

body {
    background: #f8fafc;
}

.container-main {
    gap: 16px;
    padding: 16px;
    background:
        radial-gradient(
            circle at 84% 18%,
            rgba(37, 187, 160, 0.1),
            transparent 26%
        ),
        #f8fafc;
}

.left,
.right {
    border: 1px solid #e5eaf0;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(15, 23, 42, 0.045);
}

.left {
    background: linear-gradient(135deg, #fff 0%, #fbfefd 100%);
    border-right: 1px solid #e5eaf0;
}

.right {
    margin: 0;
    background: #f8fafc;
}

.login-box {
    border-color: #e5eaf0;
    border-radius: 10px;
    box-shadow: 0 5px 18px rgba(15, 23, 42, 0.06);
}

.login-eyebrow::before,
.login-submit-btn {
    background: #12b7aa;
}

.input-wrap input.form-control {
    border-color: #dbe2ec;
    border-radius: 6px;
}

.login-submit-btn {
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(1, 151, 144, 0.16);
}

.cards .feature-card,
.help-box {
    border-color: #e5eaf0;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.035);
}

@media (max-width: 820px) {
    .container-main {
        padding: 0;
        gap: 0;
    }

    .right {
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }
}

.central-login-page .container-main {
    width: min(100%, 1280px);
    min-height: calc(100vh - 100px);
    margin: 0 auto;
    padding: 48px 24px;
    justify-content: center;
    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(11, 166, 166, 0.1),
            transparent 28%
        ),
        radial-gradient(
            circle at 88% 82%,
            rgba(7, 27, 73, 0.07),
            transparent 26%
        ),
        #f7fbfc;
}

.central-login-page .left,
.central-login-page .help-concierge {
    display: none;
}

.central-login-page .right {
    width: min(100%, 500px);
    min-height: auto;
    flex: 0 1 500px;
    margin: 0;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.central-login-page .login-box {
    width: 100%;
    max-width: none;
    padding: 34px;
    border-color: #dfe9ed;
    border-radius: 16px;
    box-shadow: 0 20px 55px rgba(7, 27, 73, 0.11);
}

.central-login-page .login-box h2 {
    font-size: 26px;
}

.central-login-page .sub-text {
    margin-top: 5px;
    font-size: 12.5px;
}

.central-login-page .form-group {
    margin-top: 18px;
}

.central-login-page .input-wrap input.form-control,
.central-login-page .login-submit-btn {
    min-height: 46px;
}

.central-login-page .zop-footer {
    border-top: 1px solid #edf1f5;
}

@media (max-width: 650px) {
    .central-login-page .container-main {
        min-height: calc(100vh - 65px);
        padding: 28px 16px;
    }

    .central-login-page .login-box {
        padding: 26px 20px;
        border-radius: 12px;
    }

    .central-login-page .login-box h2 {
        font-size: 23px;
    }
}
.login-session-alert {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 0 0 18px;
    padding: 10px 12px;
    border: 1px solid #f2cf85;
    border-radius: 8px;
    background: #fff8e8;
    color: #7a5200;
    font-size: 0.82rem;
    line-height: 1.45;
}

.login-session-alert i {
    margin-top: 1px;
    font-size: 1.05rem;
}
