:root {
    --bg: #f3f1eb;
    --panel: #ffffff;
    --panel-soft: #faf8f3;
    --primary: #123c3c;
    --primary-light: #1f5c5c;
    --accent: #c9a24a;
    --accent-soft: #f4ead0;
    --text: #1f2933;
    --muted: #6b7280;
    --border: #e5dfd2;
    --success: #1f8f5f;
    --warning: #d9961b;
    --danger: #c0392b;
    --shadow: 0 18px 45px rgba(18, 60, 60, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(201, 162, 74, 0.16), transparent 35%),
        linear-gradient(135deg, #f7f4ec 0%, #eef3f1 100%);
    color: var(--text);
    min-height: 100vh;
}

header {
    background: linear-gradient(135deg, #0d2f2f 0%, #174f4f 100%);
    color: white;
    padding: 34px 24px 22px;
    box-shadow: var(--shadow);
}

header h1 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-align: center;
}

nav {
    margin-top: 26px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

nav a,
.nav-menu summary {
    color: white;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 14px;
    font-weight: 700;
    transition: 0.2s ease;
    line-height: 1;
}

nav a:hover,
.nav-menu summary:hover {
    background: var(--accent);
    color: #102a2a;
    transform: translateY(-1px);
}

.app-nav {
    position: relative;
}

.nav-menu {
    position: relative;
}

.nav-menu summary {
    cursor: pointer;
    list-style: none;
}

.nav-menu summary::-webkit-details-marker {
    display: none;
}

.nav-menu summary::after {
    content: "▾";
    display: inline-block;
    margin-left: 8px;
    font-size: 11px;
}

.nav-menu[open] summary::after {
    transform: rotate(180deg);
}

.nav-menu-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    z-index: 40;
    display: grid;
    min-width: 190px;
    gap: 6px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(13, 47, 47, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.25);
    transform: translateX(-50%);
}

.nav-menu-panel a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    background: transparent;
}

.nav-menu.active summary,
nav a.active {
    background: var(--accent);
    color: #102a2a;
}

main,
.container {
    max-width: 1180px;
    margin: 34px auto;
    padding: 0 22px;
}

.card,
section,
form,
.table-box {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 24px;
    margin-bottom: 22px;
}

h2, h3 {
    color: var(--primary);
    margin-top: 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(18, 60, 60, 0.08);
}

th {
    background: #123c3c;
    color: white;
    padding: 14px 12px;
    text-align: left;
    font-weight: 600;
}

td {
    padding: 13px 12px;
    border-bottom: 1px solid #eee8dc;
}

tr:hover td {
    background: #faf7ef;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 15px;
    background: #fffdf8;
    margin: 6px 0 14px;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 162, 74, 0.18);
}

button,
.button,
.btn,
input[type="submit"] {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(18, 60, 60, 0.18);
    transition: 0.2s ease;
}

button:hover,
.button:hover,
.btn:hover,
input[type="submit"]:hover {
    background: linear-gradient(135deg, var(--accent), #d8b85e);
    color: #102a2a;
    transform: translateY(-1px);
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.kpi-card {
    background: linear-gradient(145deg, #ffffff, #fbf7ed);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.kpi-card span {
    color: var(--muted);
    font-size: 14px;
}

.kpi-card strong {
    display: block;
    margin-top: 8px;
    font-size: 28px;
    color: var(--primary);
}

.badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.badge-success {
    background: #dff3e9;
    color: var(--success);
}

.badge-warning {
    background: #fff1d6;
    color: var(--warning);
}

.badge-danger {
    background: #fde2df;
    color: var(--danger);
}

a {
    color: var(--primary-light);
    font-weight: 600;
}

footer {
    text-align: center;
    color: var(--muted);
    padding: 30px;
    font-size: 13px;
}

.dashboard-home {
    display: grid;
    gap: 22px;
}

.overview-hero {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 24px;
    padding: 28px;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.overview-hero h2 {
    margin-bottom: 8px;
    font-size: 30px;
}

.hero-copy {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.hero-balance {
    min-width: 230px;
    display: grid;
    align-content: center;
    gap: 6px;
    padding: 18px;
    border-radius: 18px;
    background: var(--panel-soft);
    border: 1px solid var(--border);
}

.subscription-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    border-radius: 18px;
    border: 1px solid rgba(15, 118, 110, 0.18);
    background: #f0fdfa;
    box-shadow: var(--shadow);
}

.subscription-banner div {
    display: grid;
    gap: 3px;
}

.subscription-banner strong {
    color: #0f766e;
}

.subscription-banner span {
    color: #334155;
}

.subscription-banner a {
    white-space: nowrap;
    text-decoration: none;
    color: #ffffff;
    background: #0f766e;
    padding: 9px 14px;
    border-radius: 999px;
}

.subscription-banner-danger {
    background: #fff1f2;
    border-color: #fecdd3;
}

.subscription-banner-danger strong {
    color: #be123c;
}

.subscription-banner-danger a {
    background: #be123c;
}

.subscription-banner-active {
    background: #eff6ff;
}

.subscription-banner-active strong {
    color: #1d4ed8;
}

.hero-balance span,
.dashboard-card small,
.section-head span {
    color: var(--muted);
    font-size: 13px;
}

.hero-balance strong {
    font-size: 28px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 16px;
}

.dashboard-card {
    display: grid;
    align-content: space-between;
    min-height: 150px;
    padding: 20px;
    border-radius: 18px;
    background: var(--panel);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--text);
}

.dashboard-card:hover {
    transform: translateY(-2px);
}

.card-title {
    color: var(--muted);
    font-size: 14px;
}

.card-value {
    margin-top: 14px;
    font-size: 34px;
    color: var(--primary);
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: baseline;
    margin-bottom: 16px;
}

.section-head h3 {
    margin: 0;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.action-btn {
    display: block;
    padding: 16px;
    border-radius: 14px;
    background: var(--panel-soft);
    border: 1px solid var(--border);
    text-decoration: none;
}

@media (max-width: 900px) {
    .auth-shell {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 28px 0;
    }

    .auth-card {
        justify-self: stretch;
        width: 100%;
    }

    .auth-brand h1 {
        font-size: 34px;
    }

    .auth-highlights {
        grid-template-columns: 1fr;
    }

    .overview-hero {
        flex-direction: column;
    }

    .dashboard-grid,
    .action-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .notice-builder {
        grid-template-columns: 1fr;
    }

    .kpi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    header h1 {
        font-size: 26px;
    }
}

@media (max-width: 600px) {
    .auth-shell {
        width: min(100vw - 24px, 520px);
        gap: 18px;
    }

    .auth-brand {
        margin-bottom: 18px;
    }

    .auth-brand h1 {
        font-size: 28px;
    }

    .auth-brand p {
        font-size: 15px;
    }

    .auth-highlights {
        display: none;
    }

    header {
        padding: 26px 14px 18px;
    }

    nav {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 6px;
        align-items: flex-start;
    }

    nav a,
    .nav-menu summary {
        white-space: nowrap;
    }

    .nav-menu {
        position: static;
    }

    .nav-menu-panel {
        position: fixed;
        top: 92px;
        left: 14px;
        right: 14px;
        transform: none;
        min-width: 0;
        grid-template-columns: 1fr;
        max-height: min(60vh, 360px);
        overflow-y: auto;
    }

    main,
    .container {
        margin: 22px auto;
        padding: 0 14px;
    }

    .dashboard-grid,
    .action-grid {
        grid-template-columns: 1fr;
    }

    .notice-paper {
        min-height: auto;
        padding: 28px 22px;
    }

    .notice-meta,
    .notice-signature {
        flex-direction: column;
    }

    .notice-paper h2 {
        font-size: 24px;
    }

    .notice-body {
        font-size: 17px;
    }

    .notice-fee-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .overview-hero {
        padding: 20px;
    }

    .overview-hero h2 {
        font-size: 24px;
    }

    .kpi-grid {
        grid-template-columns: 1fr;
    }

    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .card,
    section,
    form,
    .table-box {
        padding: 18px;
        border-radius: 18px;
    }
}
.page-header-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 28px 32px;
    margin-bottom: 28px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.page-header-card h2 {
    margin: 0 0 8px;
    color: #0f3d3e;
    font-size: 28px;
}

.page-header-card p {
    margin: 0;
    color: #475569;
}

.primary-btn {
    background: linear-gradient(135deg, #0f766e, #164e63);
    color: white;
    text-decoration: none;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(15, 118, 110, 0.25);
}

.primary-btn:hover {
    transform: translateY(-2px);
}

.danger-btn {
    background: linear-gradient(135deg, #dc2626, #991b1b);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.form-grid label {
    color: #334155;
    font-weight: 700;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    width: 100%;
    margin-top: 7px;
}

.form-grid .form-actions {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.table-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}

.table-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.table-title-row h3 {
    margin: 0;
    color: #0f3d3e;
}

.table-subtitle {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
}

.notice-builder {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
    gap: 24px;
    align-items: start;
}

.notice-paper {
    width: min(100%, 794px);
    min-height: 960px;
    margin: 0 auto 22px;
    padding: 58px 64px;
    background: #fffef9;
    border: 1px solid #e8dfcc;
    border-radius: 10px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    color: #111827;
}

.notice-meta {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 2px solid #123c3c;
    color: #123c3c;
    font-size: 15px;
}

.notice-paper h2 {
    margin: 46px 0 36px;
    color: #111827;
    text-align: center;
    font-size: 32px;
    line-height: 1.2;
    text-transform: uppercase;
}

.notice-fee-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 28px;
}

.notice-fee-summary div {
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 12px;
    background: #f8fafc;
}

.notice-fee-summary span {
    display: block;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.notice-fee-summary strong {
    display: block;
    margin-top: 5px;
    color: #0f172a;
    font-size: 15px;
}

.notice-body {
    font-size: 20px;
    line-height: 1.65;
}

.notice-body p {
    margin: 0 0 20px;
}

.notice-body ol {
    margin: 0 0 22px 26px;
    padding: 0;
}

.notice-signature {
    margin-top: 72px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    font-size: 18px;
}

.badge {
    background: #e0f2f1;
    color: #0f766e;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.modern-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1100px;
}

.modern-table thead {
    background: linear-gradient(135deg, #0f766e, #164e63);
    color: white;
}

.modern-table th {
    padding: 15px 14px;
    text-align: left;
    font-size: 14px;
}

.modern-table td {
    padding: 14px;
    border-bottom: 1px solid #e5e7eb;
    color: #1f2937;
}

.modern-table tbody tr:hover {
    background: #f8fafc;
}

.muted {
    color: #94a3b8;
    font-style: italic;
}

.apt-number {
    display: inline-flex;
    align-items: center;
    min-width: 74px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #e0f2f1;
    color: #0f766e;
}

.contact-stack {
    display: grid;
    gap: 4px;
}

.apartments-table {
    min-width: 980px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #e0f2f1;
    color: #0f766e;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.detail-separator {
    color: #cbd5e1;
    padding: 0 8px;
}

.metric-label {
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.apartment-history-header {
    align-items: stretch;
}

.history-balance-panel {
    min-width: 220px;
    display: grid;
    align-content: center;
    justify-items: flex-start;
    gap: 9px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.history-balance-panel strong {
    font-size: 25px;
    line-height: 1;
}

.history-table {
    min-width: 900px;
}

.empty-state {
    text-align: center;
    color: #64748b;
    padding: 28px !important;
}

.collection-shell {
    max-width: 1040px;
}

.collection-floor-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.collection-list {
    display: grid;
    gap: 18px;
}

.collection-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 6px solid #0f766e;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
    padding: 22px;
}

.collection-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.collection-card h3 {
    margin: 12px 0 8px;
    color: #0f172a;
}

.collection-debt {
    min-width: 170px;
    display: grid;
    gap: 6px;
    justify-items: flex-end;
    text-align: right;
}

.collection-debt strong {
    color: #dc2626;
    font-size: 24px;
    line-height: 1;
}

.collection-note {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 15px;
    background: #fff7ed;
    color: #9a3412;
    font-weight: 600;
}

.collection-form {
    margin-top: 18px;
}

.collection-input-grid {
    display: grid;
    grid-template-columns: minmax(150px, 0.75fr) minmax(220px, 1.25fr);
    gap: 12px;
}

.collection-input-grid label {
    color: #334155;
    font-weight: 700;
}

.collection-action-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.collection-btn {
    border: 0;
    border-radius: 14px;
    color: #ffffff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 800;
    padding: 13px 10px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.collection-btn:hover {
    transform: translateY(-1px);
    opacity: 0.92;
}

.collection-btn.paid {
    background: #16a34a;
}

.collection-btn.partial {
    background: #d97706;
}

.collection-btn.not-home {
    background: #475569;
}

.collection-btn.promised {
    background: #2563eb;
}

.collection-secondary-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.notification-meta {
    margin-top: 10px;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
    text-align: right;
}

.empty-card {
    text-align: center;
}

.empty-card p {
    margin: 0;
    color: #64748b;
}

.payments-table {
    min-width: 880px;
}

.inline-payment-form {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 230px;
}

.inline-payment-form input {
    min-width: 120px;
    margin: 0;
}

.inline-payment-form .small-btn {
    border: 0;
    cursor: pointer;
    white-space: nowrap;
}

.finance-balance-panel {
    min-width: 250px;
    display: grid;
    align-content: center;
    justify-items: flex-start;
    gap: 9px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.finance-balance-panel strong {
    font-size: 26px;
    line-height: 1;
}

.transactions-table {
    min-width: 820px;
}

.expense-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(110px, 1fr));
    gap: 12px;
    min-width: 260px;
}

.expense-summary > div {
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.expense-summary strong {
    font-size: 26px;
    line-height: 1;
}

.expense-filter-card {
    margin-bottom: 20px;
}

.expense-filter-form {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(220px, 2fr) auto auto auto;
    gap: 12px;
    align-items: end;
    margin: 0;
    padding: 0;
    box-shadow: none;
    border: 0;
    background: transparent;
}

.expense-filter-form label {
    color: #334155;
    font-weight: 700;
}

.expense-filter-form select {
    margin: 0;
}

.expenses-table {
    min-width: 900px;
}

.inline-action-form {
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
}

.inline-action-form .small-btn {
    border: 0;
    cursor: pointer;
    white-space: nowrap;
}

.reports-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 20px;
    align-items: start;
}

.report-form-card {
    margin: 0;
}

.report-option-list {
    display: grid;
    gap: 12px;
    margin: 18px 0 22px;
}

.report-option {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #f8fafc;
    cursor: pointer;
}

.report-option input {
    width: auto;
    margin: 4px 0 0;
}

.report-option strong,
.report-option small {
    display: block;
}

.report-option small {
    margin-top: 5px;
    color: #64748b;
}

.report-submit {
    border: 0;
    cursor: pointer;
}

.report-help-card {
    margin: 0;
}

.report-help-list {
    display: grid;
    gap: 12px;
    padding-left: 18px;
    color: #475569;
}

.report-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.report-actions button {
    border: 0;
    cursor: pointer;
}

.report-result-card {
    margin-bottom: 0;
}

.report-table {
    min-width: 760px;
}

.users-layout {
    display: grid;
    gap: 22px;
}

.user-create-card {
    margin-bottom: 0;
}

.admin-form {
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.admin-form-grid label {
    color: #334155;
    font-weight: 700;
}

.admin-submit {
    border: 0;
    cursor: pointer;
    margin-top: 4px;
}

.users-table {
    min-width: 1180px;
}

.users-table input,
.users-table select {
    margin: 0;
}

.settings-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 22px;
    align-items: start;
}

.settings-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.settings-form-grid label {
    color: #334155;
    font-weight: 700;
}

.wide-field {
    grid-column: 1 / -1;
}

.settings-preview-card {
    margin-bottom: 0;
}

.settings-preview-card p {
    color: #64748b;
    margin-bottom: 18px;
}

.settings-preview-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid #e2e8f0;
}

.settings-preview-row span {
    color: #64748b;
}

.password-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 22px;
    align-items: start;
}

.password-form-grid {
    display: grid;
    gap: 14px;
}

.password-form-grid label {
    color: #334155;
    font-weight: 700;
}

.password-help-card {
    margin-bottom: 0;
}

.form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    gap: 22px;
    align-items: start;
}

.entity-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.entity-form-grid label {
    color: #334155;
    font-weight: 700;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 4px;
}

.form-help-card {
    margin-bottom: 0;
}

.form-help-card p {
    color: #64748b;
    margin-bottom: 0;
}

.amount-danger {
    color: #dc2626;
    font-weight: 800;
}

.amount-success {
    color: #16a34a;
    font-weight: 800;
}

.amount-neutral {
    color: #334155;
    font-weight: 700;
}

.status-badge {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.status-paid {
    background: #dcfce7;
    color: #166534;
}

.status-unpaid {
    background: #fee2e2;
    color: #991b1b;
}

.status-trial {
    background: #fef3c7;
    color: #92400e;
}

.status-active {
    background: #dcfce7;
    color: #166534;
}

.status-expired,
.status-suspended,
.status-cancelled,
.status-registered,
.status-archived {
    background: #fee2e2;
    color: #991b1b;
}

.status-rewarded {
    background: #dcfce7;
    color: #166534;
}

.client-action-form {
    display: grid;
    gap: 8px;
    min-width: 240px;
}

.client-action-form select,
.client-action-form input {
    min-height: 38px;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px 10px;
}

.client-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.btn-small {
    border: 0;
    border-radius: 999px;
    padding: 9px 13px;
    background: #0f766e;
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
}

.btn-small.secondary {
    background: #334155;
}

.btn-small.danger {
    background: #dc2626;
}

.setup-page {
    display: grid;
    gap: 22px;
}

.setup-hero,
.setup-card {
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(15, 61, 115, 0.10);
    box-shadow: var(--shadow);
}

.setup-hero {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: center;
    padding: 28px;
}

.setup-hero h2 {
    margin: 0 0 8px;
    color: #102033;
    font-size: clamp(28px, 4vw, 44px);
}

.setup-summary {
    min-width: 170px;
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0f3d73, #0f766e);
    color: #ffffff;
    text-align: center;
}

.setup-summary strong,
.setup-summary span {
    display: block;
}

.setup-summary strong {
    font-size: 34px;
}

.setup-steps {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.setup-steps a {
    display: grid;
    gap: 8px;
    min-height: 96px;
    padding: 14px;
    border-radius: 18px;
    background: #ffffff;
    color: #102033;
    text-decoration: none;
    border: 1px solid #e6edf5;
    box-shadow: 0 12px 34px rgba(15, 61, 115, 0.07);
}

.setup-steps a.active {
    background: #0f766e;
    color: #ffffff;
}

.setup-steps a.done {
    border-color: #99f6e4;
}

.setup-steps span {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e0f2fe;
    color: #0f3d73;
    font-weight: 900;
}

.setup-steps a.active span {
    background: #ffffff;
}

.setup-card {
    padding: clamp(22px, 4vw, 34px);
}

.setup-card-head {
    margin-bottom: 22px;
}

.setup-card-head h3,
.setup-finish h3 {
    margin: 0 0 8px;
    color: #102033;
    font-size: clamp(24px, 3vw, 34px);
}

.setup-card-head p,
.setup-finish p {
    margin: 0;
    color: #5b6f86;
    line-height: 1.55;
}

.setup-form,
.setup-option {
    display: grid;
    gap: 16px;
}

.setup-form-grid,
.setup-option-grid,
.setup-fees-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.setup-form label,
.setup-option label,
.setup-fee-row label {
    display: grid;
    gap: 7px;
    color: #102033;
    font-weight: 800;
}

.setup-form input,
.setup-form textarea,
.setup-form select,
.setup-option input,
.setup-option textarea,
.setup-fee-row input,
.setup-fee-row select {
    width: 100%;
    min-height: 46px;
    padding: 11px 13px;
    border-radius: 14px;
    border: 1px solid #cfd9e5;
    background: #ffffff;
}

.setup-option,
.setup-fee-row,
.setup-import-note,
.setup-channel-grid span {
    padding: 18px;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid #e6edf5;
}

.setup-option h4,
.setup-fee-row strong {
    margin: 0;
    color: #102033;
}

.muted-option {
    color: #5b6f86;
}

.setup-fee-row {
    display: grid;
    grid-template-columns: 1fr 0.8fr 1fr;
    gap: 12px;
    align-items: end;
}

.setup-stat {
    margin: 18px 0 0;
    color: #5b6f86;
    font-weight: 800;
}

.setup-import-note {
    display: grid;
    gap: 4px;
    color: #334155;
}

.setup-channel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.setup-channel-grid span {
    color: #0f766e;
    font-weight: 900;
    text-align: center;
}

.setup-finish {
    display: grid;
    gap: 16px;
    text-align: center;
    place-items: center;
    padding: 24px;
}

.setup-finish > span {
    display: inline-flex;
    padding: 9px 14px;
    border-radius: 999px;
    background: #dcfce7;
    color: #166534;
    font-weight: 900;
}

.setup-finish-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.referrals-page {
    display: grid;
    gap: 22px;
}

.referral-link-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, #0f3d73, #0f766e);
    color: #ffffff;
    box-shadow: var(--shadow);
}

.referral-link-card .eyebrow,
.referral-link-card strong,
.referral-link-card p {
    color: #ffffff;
}

.referral-link-card strong {
    display: block;
    margin: 6px 0;
    font-size: clamp(20px, 3vw, 32px);
    overflow-wrap: anywhere;
}

.referral-link-card p {
    margin: 0;
}

.referral-link-card .primary-btn {
    background: #ffffff;
    color: #0f3d73;
    white-space: nowrap;
}

.building-switcher {
    display: inline-flex;
    align-items: center;
}

.building-switcher select {
    min-height: 38px;
    max-width: 180px;
    padding: 8px 12px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-weight: 900;
}

.building-switcher option {
    color: #102033;
}

.buildings-page {
    display: grid;
    gap: 22px;
}

.buildings-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.building-card {
    display: grid;
    gap: 16px;
    padding: 22px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(15, 61, 115, 0.12);
    box-shadow: var(--shadow);
}

.building-card.current {
    border-color: rgba(15, 118, 110, 0.42);
    box-shadow: 0 24px 60px rgba(15, 118, 110, 0.16);
}

.building-card.archived {
    opacity: 0.78;
}

.building-card-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.building-card h3 {
    margin: 0;
    color: #102033;
    font-size: 25px;
}

.building-card p {
    margin: 4px 0 0;
    color: #5b6f86;
}

.building-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.building-stats-grid span {
    display: grid;
    gap: 4px;
    padding: 12px;
    border-radius: 14px;
    background: #f8fbff;
    color: #5b6f86;
    font-weight: 800;
}

.building-stats-grid strong {
    color: #102033;
}

.building-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.permissions-card {
    padding: 18px;
}

.permissions-table td,
.permissions-table th {
    white-space: nowrap;
}

.permission-check {
    display: grid;
    place-items: center;
}

.permission-check input {
    width: 20px;
    height: 20px;
    accent-color: #0f766e;
}

.actions-cell {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.small-btn {
    background: #0f766e;
    color: white;
    text-decoration: none;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.small-btn.secondary {
    background: #334155;
}

.small-btn.viber-btn {
    background: #7360f2;
}

.small-btn.sms-btn {
    background: #0ea5e9;
}

.small-btn.email-btn {
    background: #2563eb;
}

.small-btn.call-btn {
    background: #16a34a;
}

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

.small-btn:hover {
    opacity: 0.9;
}

.notification-history-card {
    margin-bottom: 22px;
}

.notification-history-table {
    min-width: 820px;
}

.message-preview {
    max-width: 420px;
    white-space: pre-wrap;
}

.owner-search-form {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.owner-search-form input {
    min-width: min(360px, 70vw);
    margin: 0;
}

.owner-card-link {
    margin-top: 14px;
}

.owner-communication-card {
    margin-bottom: 22px;
}

.owner-actions {
    margin-top: 0;
}

.owners-table {
    min-width: 980px;
}

.owner-history-table {
    min-width: 720px;
}

.protocols-table,
.fees-table {
    min-width: 980px;
}

.decision-list,
.file-list {
    display: grid;
    gap: 12px;
}

.decision-item {
    padding: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #f8fafc;
}

.decision-item p {
    margin: 8px 0 0;
    color: #475569;
}

.file-pill {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    color: #0f766e;
    text-decoration: none;
    font-weight: 700;
}

.file-pill span {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.compact-form {
    margin-top: 18px;
}

.inline-replace summary {
    display: inline-block;
    cursor: pointer;
    list-style: none;
}

.inline-replace summary::-webkit-details-marker {
    display: none;
}

.inline-replace-form {
    display: grid;
    gap: 8px;
    min-width: 220px;
    margin-top: 10px;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #f8fafc;
}

.inline-replace-form input,
.inline-replace-form select {
    margin: 0;
    min-width: 0;
}

.debtors-table,
.debtor-months-table {
    min-width: 980px;
}

.debt-amount,
.debt-chip {
    border-radius: 999px;
    font-weight: 800;
}

.debt-amount {
    display: inline-block;
    padding: 8px 12px;
}

.debt-green {
    background: #dcfce7;
    color: #166534;
}

.debt-yellow {
    background: #fef9c3;
    color: #854d0e;
}

.debt-orange {
    background: #ffedd5;
    color: #9a3412;
}

.debt-red {
    background: #fee2e2;
    color: #991b1b;
}

.debtor-summary-grid .active-card {
    outline: 2px solid #0f766e;
}

.top-debtors {
    display: grid;
    gap: 10px;
}

.debt-chip {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    text-decoration: none;
}

.timeline-list {
    display: grid;
    gap: 12px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 160px 130px 1fr 120px;
    gap: 12px;
    align-items: start;
    padding: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #f8fafc;
}

.timeline-item span,
.timeline-item small {
    color: #64748b;
    font-weight: 700;
}

.timeline-item p {
    margin: 0;
}

.two-column-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.maintenance-detail-hero {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.maintenance-hero-meta,
.maintenance-stats {
    align-items: center;
}

.maintenance-hero-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.maintenance-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    gap: 22px;
    align-items: start;
}

.maintenance-table {
    min-width: 980px;
}

.maintenance-description {
    margin: 0 0 20px;
    color: #334155;
    line-height: 1.65;
    white-space: pre-wrap;
}

.maintenance-update-form {
    margin-top: 18px;
}

.compact-value {
    font-size: 20px;
    line-height: 1.2;
}

.priority-badge {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.priority-low {
    background: #e0f2fe;
    color: #075985;
}

.priority-medium {
    background: #dcfce7;
    color: #166534;
}

.priority-high {
    background: #ffedd5;
    color: #9a3412;
}

.priority-urgent {
    background: #fee2e2;
    color: #991b1b;
}

.maintenance-status-new {
    background: #dbeafe;
    color: #1d4ed8;
}

.maintenance-status-accepted,
.maintenance-status-in_progress {
    background: #ccfbf1;
    color: #0f766e;
}

.maintenance-status-waiting_parts {
    background: #fef9c3;
    color: #854d0e;
}

.maintenance-status-completed {
    background: #dcfce7;
    color: #166534;
}

.maintenance-status-rejected {
    background: #fee2e2;
    color: #991b1b;
}

.checkbox-line {
    align-items: center;
    display: flex;
    gap: 10px;
}

.checkbox-line input {
    margin: 0;
    width: auto;
}

.maintenance-file-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.maintenance-file-card {
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #f8fafc;
    color: #0f172a;
    text-decoration: none;
}

.maintenance-file-card:hover {
    border-color: #0f766e;
}

.maintenance-file-card small {
    color: #64748b;
    font-weight: 700;
}

.file-phase {
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: #ccfbf1;
    color: #0f766e;
    font-size: 12px;
    font-weight: 800;
}

.status-pending {
    background: #fef9c3;
    color: #854d0e;
}

.online-payment-card {
    border-top: 4px solid #0f766e;
}

.online-payment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
}

.payment-method-panel,
.payment-upload-panel {
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #f8fafc;
}

.payment-method-panel h4,
.payment-upload-panel h4 {
    margin: 0;
    color: #0f3d3e;
}

.payment-method-panel p {
    margin: 0;
    color: #334155;
    overflow-wrap: anywhere;
}

.payment-qr-box {
    display: grid;
    place-items: center;
    min-height: 170px;
    border-radius: 16px;
    background: white;
    border: 1px dashed #cbd5e1;
}

.payment-qr-box img {
    width: min(160px, 100%);
    height: auto;
}

.payment-upload-panel input,
.payment-upload-panel select,
.payment-upload-panel textarea {
    margin-bottom: 0;
}

.online-payment-history {
    margin-top: 18px;
}

.online-payments-mini-table {
    min-width: 760px;
}

.online-payments-table {
    min-width: 1180px;
}

.online-action-stack {
    display: grid;
    gap: 8px;
    min-width: 170px;
}

.reject-payment-form {
    display: grid;
    gap: 8px;
}

.reject-payment-form input {
    min-width: 150px;
    margin: 0;
}

.owner-portal-hero {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.owner-portal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
}

.owner-portal-table {
    min-width: 920px;
}

.compact-portal-form,
.owner-request-form {
    display: grid;
    gap: 12px;
}

.compact-portal-form input,
.compact-portal-form select,
.compact-portal-form textarea {
    margin-bottom: 0;
}

.portal-list {
    display: grid;
    gap: 10px;
}

.portal-list-item {
    display: grid;
    gap: 6px;
    padding: 13px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #f8fafc;
    color: #0f172a;
    text-decoration: none;
}

.portal-list-item:hover {
    border-color: #0f766e;
}

.portal-list-item span,
.portal-list-item p {
    margin: 0;
    color: #64748b;
    line-height: 1.45;
}

.owner-requests-history {
    margin-top: 18px;
}

.ai-dom-hero {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.ai-scope-card {
    min-width: 240px;
    padding: 14px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: grid;
    gap: 4px;
}

.ai-scope-card span {
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.ai-scope-card strong {
    color: #0f3d3e;
    overflow-wrap: anywhere;
}

.ai-dom-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 22px;
    align-items: start;
}

.ai-dom-form {
    display: grid;
    gap: 14px;
}

.ai-dom-form textarea,
.ai-dom-form select {
    margin-bottom: 0;
}

.ai-answer-box,
.ai-conversation-item {
    margin-top: 18px;
    padding: 16px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
}

.ai-answer-box pre,
.ai-conversation-item pre {
    margin: 10px 0 0;
    white-space: pre-wrap;
    font-family: inherit;
    color: #0f172a;
    line-height: 1.55;
}

.ai-conversation-list {
    display: grid;
    gap: 12px;
}

.ai-conversation-item {
    margin-top: 0;
    display: grid;
    gap: 8px;
}

.ai-conversation-item small {
    color: #64748b;
    font-weight: 700;
}

.auth-extra-link {
    margin-top: 16px;
    text-align: center;
}

.auth-extra-link a {
    color: #0f766e;
    font-weight: 800;
}

.invitations-table {
    min-width: 920px;
}

.landing-body {
    background: #f5f9ff;
    color: #102033;
}

.landing-header {
    position: sticky;
    top: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px clamp(18px, 4vw, 64px);
    background: rgba(255, 255, 255, 0.92);
    color: #0f2742;
    border-bottom: 1px solid rgba(31, 82, 140, 0.12);
    box-shadow: 0 10px 32px rgba(15, 39, 66, 0.08);
    backdrop-filter: blur(14px);
}

.landing-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0f3d73;
    text-decoration: none;
}

.landing-brand span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #0f67b1;
    color: white;
    font-weight: 900;
}

.landing-brand strong {
    font-size: 19px;
}

.landing-nav {
    margin: 0;
    gap: 8px;
}

.landing-nav a {
    color: #1e4e81;
    background: transparent;
    border: 1px solid transparent;
}

.landing-nav a:hover {
    background: #e6f1ff;
    color: #0f3d73;
    transform: none;
}

.landing-hero {
    min-height: 84vh;
    display: grid;
    align-items: center;
    padding: clamp(84px, 10vw, 140px) clamp(20px, 6vw, 96px) clamp(56px, 7vw, 96px);
    background:
        linear-gradient(90deg, rgba(8, 31, 58, 0.82), rgba(12, 68, 121, 0.52), rgba(12, 68, 121, 0.18)),
        url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=82") center / cover;
    color: white;
}

.landing-hero-content {
    width: min(760px, 100%);
}

.landing-kicker,
.landing-section-head span {
    margin: 0 0 12px;
    color: #72c7ff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.landing-hero h1 {
    margin: 0;
    color: white;
    font-size: clamp(46px, 8vw, 92px);
    line-height: 0.98;
}

.landing-hero-copy {
    max-width: 680px;
    margin: 24px 0 0;
    color: #e5f2ff;
    font-size: clamp(19px, 2.2vw, 27px);
    line-height: 1.45;
}

.landing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.landing-primary,
.landing-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
}

.landing-primary {
    background: #ffffff;
    color: #0f3d73;
    box-shadow: 0 18px 40px rgba(4, 20, 38, 0.22);
}

.landing-secondary {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.12);
}

.landing-trial-strip {
    width: min(760px, 100%);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.landing-trial-strip span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.34);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
}

.landing-section {
    padding: clamp(56px, 7vw, 96px) clamp(20px, 6vw, 96px);
}

.landing-section-head {
    width: min(980px, 100%);
    margin: 0 auto 28px;
    text-align: center;
}

.landing-section-head h2,
.landing-cta h2 {
    margin: 0;
    color: #102033;
    font-size: clamp(30px, 4.6vw, 54px);
    line-height: 1.08;
}

.landing-card-grid,
.why-grid,
.future-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.five-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.problem-card,
.solution-card,
.future-grid article,
.why-grid div {
    min-height: 126px;
    padding: 22px;
    border: 1px solid rgba(31, 82, 140, 0.12);
    border-radius: 18px;
    background: white;
    box-shadow: 0 18px 42px rgba(15, 39, 66, 0.08);
}

.problem-card {
    border-top: 4px solid #d84d57;
}

.problem-card strong,
.solution-card strong,
.future-grid strong {
    display: block;
    color: #102033;
    font-size: 18px;
    line-height: 1.35;
}

.solution-card span {
    display: inline-flex;
    margin-bottom: 16px;
    color: #0f67b1;
    font-weight: 900;
}

.solution-card p,
.future-grid p {
    margin: 10px 0 0;
    color: #5b6f86;
    line-height: 1.55;
}

.landing-solution,
.landing-why {
    background: #ffffff;
}

.landing-section-head p {
    max-width: 720px;
    margin: 12px auto 0;
    color: #5b6f86;
    font-size: 18px;
    line-height: 1.55;
}

.landing-pricing {
    background: linear-gradient(180deg, #f7fbff, #ffffff);
}

.pricing-card {
    width: min(1040px, 100%);
    margin: 0 auto;
    padding: clamp(24px, 4vw, 44px);
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(15, 61, 115, 0.12);
    box-shadow: 0 28px 80px rgba(15, 61, 115, 0.14);
}

.pricing-plans-grid {
    width: min(1240px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.pricing-plan-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 24px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(15, 61, 115, 0.12);
    box-shadow: 0 18px 50px rgba(15, 61, 115, 0.10);
}

.pricing-plan-card.featured {
    border-color: rgba(15, 118, 110, 0.35);
    box-shadow: 0 28px 72px rgba(15, 118, 110, 0.18);
    transform: translateY(-8px);
}

.pricing-plan-card.enterprise {
    background: #f8fbff;
}

.pricing-plan-head {
    display: grid;
    gap: 8px;
}

.pricing-plan-head span {
    color: #5b6f86;
    font-weight: 800;
    line-height: 1.35;
}

.pricing-plan-card h3 {
    margin: 0;
    color: #102033;
    font-size: 24px;
    line-height: 1.16;
}

.pricing-price.compact {
    min-width: 0;
    padding: 18px;
    border-radius: 20px;
}

.pricing-price.compact strong {
    font-size: clamp(38px, 4.8vw, 56px);
}

.pricing-plan-card.enterprise .pricing-price.compact strong {
    font-size: clamp(28px, 3.6vw, 38px);
}

.pricing-includes {
    margin: 0;
    color: #0f766e;
    font-weight: 900;
}

.pricing-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding-bottom: 28px;
    border-bottom: 1px solid #e6edf5;
}

.pricing-plan {
    display: inline-flex;
    margin: 0 0 12px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #e0f2fe;
    color: #0f3d73;
    font-weight: 900;
}

.pricing-main h3 {
    margin: 0;
    color: #102033;
    font-size: clamp(30px, 4vw, 46px);
}

.pricing-copy {
    max-width: 600px;
    margin: 12px 0 0;
    color: #5b6f86;
    font-size: 18px;
    line-height: 1.55;
}

.pricing-price {
    min-width: 230px;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, #0f3d73, #0f766e);
    color: #ffffff;
    text-align: center;
}

.pricing-price strong {
    display: block;
    font-size: clamp(54px, 8vw, 86px);
    line-height: 0.95;
}

.pricing-price span {
    display: block;
    margin-top: 8px;
    color: #dbeafe;
    font-size: 18px;
    font-weight: 800;
}

.pricing-info {
    display: grid;
    gap: 4px;
    margin-top: 24px;
    padding: 18px 20px;
    border-radius: 20px;
    background: #f0fdfa;
    border: 1px solid #b5f0e2;
}

.pricing-info strong {
    color: #0f766e;
    font-size: 21px;
}

.pricing-info span,
.pricing-info p {
    margin: 0;
    color: #334155;
}

.pricing-features,
.pricing-trial {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.pricing-features.compact-list {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 0;
}

.pricing-features.compact-list span {
    min-height: 38px;
    padding-top: 9px;
    padding-bottom: 9px;
    font-size: 14px;
}

.pricing-trial-wide {
    width: min(1040px, 100%);
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin: 24px auto 0;
}

.pricing-features span,
.pricing-trial span {
    position: relative;
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 11px 14px 11px 36px;
    border-radius: 14px;
    background: #f8fbff;
    border: 1px solid #e6edf5;
    color: #102033;
    font-weight: 800;
}

.pricing-features span::before,
.pricing-trial span::before {
    content: "✓";
    position: absolute;
    left: 14px;
    color: #0f766e;
    font-weight: 900;
}

.pricing-trial span {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.pricing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.pricing-actions-center {
    justify-content: center;
}

.pricing-actions .landing-primary {
    background: #0f3d73;
    color: #ffffff;
}

.pricing-actions .landing-secondary {
    color: #0f3d73;
    border-color: #b8c8dc;
    background: #ffffff;
}

.landing-ai-section {
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(15, 61, 115, 0.96), rgba(15, 118, 110, 0.94));
}

.landing-ai-section .landing-section-head h2,
.landing-ai-section .landing-section-head span,
.landing-ai-section .landing-section-head p {
    color: #ffffff;
}

.ai-marketing-grid {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.2fr;
    gap: 18px;
}

.ai-premium-card,
.ai-capabilities-card,
.ai-privacy-card {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 24px 64px rgba(4, 20, 38, 0.24);
    backdrop-filter: blur(10px);
}

.ai-premium-card {
    display: grid;
    align-content: start;
    gap: 16px;
    padding: 30px;
}

.ai-capabilities-card {
    padding: 30px;
}

.ai-privacy-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 0.35fr 1fr 1fr;
    gap: 18px;
    align-items: start;
    padding: 24px 30px;
}

.ai-card-head {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ai-card-head span,
.ai-card-head strong {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 900;
}

.ai-card-head span {
    background: #ffffff;
    color: #0f3d73;
}

.ai-card-head strong {
    background: rgba(20, 184, 166, 0.22);
    color: #ccfbf1;
}

.ai-premium-card h3,
.ai-capabilities-card h3,
.ai-privacy-card h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(25px, 3vw, 36px);
}

.ai-premium-card p,
.ai-privacy-card p {
    margin: 0;
    color: #e5f2ff;
    line-height: 1.6;
}

.ai-access-note {
    display: grid;
    gap: 4px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
}

.ai-access-note strong,
.ai-access-note span {
    color: #ffffff;
}

.ai-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.ai-feature-list span {
    position: relative;
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 11px 14px 11px 36px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-weight: 800;
}

.ai-feature-list span::before {
    content: "✓";
    position: absolute;
    left: 14px;
    color: #67e8f9;
    font-weight: 900;
}

.landing-how {
    background: linear-gradient(135deg, #0f3d73, #0f67b1);
    color: white;
}

.landing-how .landing-section-head h2,
.landing-how .landing-section-head span {
    color: white;
}

.landing-steps {
    width: min(1100px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.landing-steps article {
    min-height: 146px;
    padding: 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.landing-steps span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: white;
    color: #0f3d73;
    font-weight: 900;
}

.landing-steps strong {
    color: white;
    font-size: 19px;
}

.feature-cloud {
    width: min(1080px, 100%);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.feature-cloud span {
    padding: 13px 18px;
    border-radius: 999px;
    color: #0f3d73;
    background: #ffffff;
    border: 1px solid rgba(31, 82, 140, 0.15);
    box-shadow: 0 12px 28px rgba(15, 39, 66, 0.07);
    font-weight: 900;
}

.why-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.why-grid div {
    min-height: 96px;
    border-top: 4px solid #23a6d5;
    color: #102033;
    font-weight: 900;
}

.landing-future {
    background: #eef6ff;
}

.landing-cta {
    margin: 0;
    padding: clamp(56px, 7vw, 96px) clamp(20px, 6vw, 96px);
    background: linear-gradient(135deg, #102033, #0f3d73);
    color: white;
    text-align: center;
}

.landing-cta h2 {
    max-width: 860px;
    margin: 0 auto;
    color: white;
}

.landing-cta .landing-actions {
    justify-content: center;
}

.landing-footer {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    background: #071a2f;
    color: #dcecff;
}

@media (max-width: 1120px) {
    .pricing-plans-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-trial-wide {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

nav a.active {
    background: rgba(255, 255, 255, 0.25);
}

.auth-body {
    background:
        linear-gradient(135deg, rgba(18, 60, 60, 0.94), rgba(31, 92, 92, 0.90)),
        linear-gradient(135deg, #f7f4ec, #eef3f1);
}

.auth-shell {
    width: min(1120px, calc(100vw - 32px));
    min-height: 100vh;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
    gap: 28px;
    align-items: center;
    padding: 36px 0;
}

.auth-intro {
    color: white;
}

.auth-brand {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 34px;
}

.auth-mark {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--accent);
    color: #102a2a;
    font-size: 30px;
    font-weight: 900;
}

.auth-brand h1 {
    margin: 0 0 10px;
    font-size: 42px;
    color: white;
}

.auth-brand p {
    max-width: 560px;
    margin: 0;
    color: #e9f4ef;
    font-size: 17px;
    line-height: 1.55;
}

.auth-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.auth-highlights div {
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.auth-highlights strong,
.auth-highlights span {
    display: block;
}

.auth-highlights span {
    margin-top: 6px;
    color: #d8ebe4;
    font-size: 13px;
    line-height: 1.4;
}

.login-page {
    min-height: calc(100vh - 170px);
    display: grid;
    place-items: center;
}

.login-card {
    width: min(460px, 100%);
}

.auth-card {
    justify-self: end;
    margin: 0;
}

.login-card .muted {
    color: var(--muted);
    margin-top: -6px;
}

.alert {
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-weight: 700;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.install-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px;
    margin-bottom: 18px;
    border-radius: 16px;
    border: 1px solid rgba(201, 162, 74, 0.45);
    background: linear-gradient(135deg, #fff8e5, #eef8f4);
}

.install-card[hidden] {
    display: none;
}

.install-card strong,
.install-card span {
    display: block;
}

.install-card span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 14px;
}

.install-card button {
    white-space: nowrap;
}

.user-form-card {
    width: 100%;
}

.modern-table input,
.modern-table select {
    margin: 0 0 8px;
    min-width: 130px;
}

@media (max-width: 768px) {
    .landing-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        padding: 14px 18px;
    }

    .landing-nav {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .landing-nav a {
        white-space: nowrap;
    }

    .landing-hero {
        min-height: 76vh;
        padding: 72px 20px 54px;
        background-position: center;
    }

    .landing-actions,
    .landing-actions a {
        width: 100%;
    }

    .pricing-main,
    .pricing-plans-grid,
    .pricing-features,
    .pricing-trial,
    .pricing-trial-wide {
        grid-template-columns: 1fr;
    }

    .pricing-plan-card.featured {
        transform: none;
    }

    .pricing-card {
        padding: 20px;
        border-radius: 22px;
    }

    .pricing-price {
        min-width: 0;
        width: 100%;
    }

    .pricing-actions,
    .pricing-actions a {
        width: 100%;
    }

    .ai-marketing-grid,
    .ai-feature-list,
    .ai-privacy-card {
        grid-template-columns: 1fr;
    }

    .ai-premium-card,
    .ai-capabilities-card,
    .ai-privacy-card {
        padding: 22px;
    }

    .setup-hero {
        flex-direction: column;
        align-items: stretch;
        padding: 22px;
    }

    .setup-steps,
    .setup-form-grid,
    .setup-option-grid,
    .setup-fees-grid,
    .setup-channel-grid {
        grid-template-columns: 1fr;
    }

    .setup-steps a {
        min-height: auto;
        grid-template-columns: auto 1fr;
        align-items: center;
    }

    .setup-fee-row {
        grid-template-columns: 1fr;
    }

    .setup-finish-actions,
    .setup-finish-actions a,
    .setup-finish-actions button {
        width: 100%;
    }

    .referral-link-card {
        flex-direction: column;
        align-items: stretch;
    }

    .referral-link-card .primary-btn {
        width: 100%;
    }

    .building-switcher,
    .building-switcher select {
        width: 100%;
        max-width: none;
    }

    .buildings-grid,
    .building-stats-grid {
        grid-template-columns: 1fr;
    }

    .building-card-head {
        flex-direction: column;
    }

    .landing-card-grid,
    .five-grid,
    .why-grid,
    .future-grid,
    .landing-steps {
        grid-template-columns: 1fr;
    }

    .problem-card,
    .solution-card,
    .future-grid article,
    .why-grid div,
    .landing-steps article {
        min-height: auto;
    }

    .landing-footer {
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .page-header-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px;
    }

    .page-header-card h2 {
        font-size: 22px;
    }

    .primary-btn {
        width: 100%;
        text-align: center;
    }

    .table-card {
        padding: 16px;
    }

    .table-title-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .history-balance-panel {
        width: 100%;
    }

    .history-balance-panel strong {
        font-size: 22px;
    }

    .collection-floor-nav,
    .collection-secondary-actions {
        width: 100%;
        justify-content: stretch;
        flex-direction: column;
    }

    .collection-secondary-actions .small-btn {
        width: 100%;
        text-align: center;
    }

    .notification-meta {
        text-align: left;
    }

    .owner-search-form,
    .owner-search-form input,
    .owner-search-form .small-btn,
    .owner-actions .small-btn {
        width: 100%;
    }

    .file-pill {
        align-items: flex-start;
        flex-direction: column;
    }

    .debt-chip,
    .timeline-item {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .two-column-info {
        grid-template-columns: 1fr;
    }

    .maintenance-detail-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .maintenance-hero-meta {
        justify-content: flex-start;
    }

    .maintenance-detail-grid {
        grid-template-columns: 1fr;
    }

    .online-payment-grid {
        grid-template-columns: 1fr;
    }

    .owner-portal-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .owner-portal-grid {
        grid-template-columns: 1fr;
    }

    .ai-dom-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .ai-scope-card {
        width: 100%;
    }

    .ai-dom-layout {
        grid-template-columns: 1fr;
    }

    .payment-qr-box {
        min-height: 140px;
    }

    .collection-card-head,
    .collection-input-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .collection-debt {
        width: 100%;
        justify-items: flex-start;
        text-align: left;
    }

    .collection-action-grid {
        grid-template-columns: 1fr 1fr;
    }

    .inline-payment-form {
        align-items: stretch;
        flex-direction: column;
    }

    .inline-payment-form input,
    .inline-payment-form .small-btn {
        width: 100%;
    }

    .finance-balance-panel {
        width: 100%;
    }

    .finance-balance-panel strong {
        font-size: 22px;
    }

    .expense-summary {
        width: 100%;
        grid-template-columns: 1fr 1fr;
    }

    .expense-filter-form {
        grid-template-columns: 1fr;
    }

    .expense-filter-form .small-btn,
    .expense-filter-form .primary-btn {
        width: 100%;
        text-align: center;
    }

    .reports-layout {
        grid-template-columns: 1fr;
    }

    .report-submit {
        width: 100%;
    }

    .report-actions {
        width: 100%;
        justify-content: stretch;
        flex-direction: column;
    }

    .report-actions .small-btn {
        width: 100%;
        text-align: center;
    }

    .admin-form-grid {
        grid-template-columns: 1fr;
    }

    .admin-submit {
        width: 100%;
    }

    .settings-layout,
    .settings-form-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-grid .form-actions {
        justify-content: stretch;
    }

    .password-layout {
        grid-template-columns: 1fr;
    }

    .form-layout,
    .maintenance-detail-grid,
    .entity-form-grid {
        grid-template-columns: 1fr;
    }

    .form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .form-actions .primary-btn,
    .form-actions .small-btn {
        width: 100%;
        text-align: center;
    }

    .wide-field {
        grid-column: auto;
    }

    .install-card {
        align-items: stretch;
        flex-direction: column;
    }

    .install-card button {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .actions-cell,
    .collection-secondary-actions,
    .owner-actions,
    .client-actions,
    .building-card-actions,
    .report-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        min-width: 0;
    }

    .actions-cell .small-btn,
    .collection-secondary-actions .small-btn,
    .owner-actions .small-btn,
    .client-actions .small-btn,
    .building-card-actions .small-btn,
    .report-actions .small-btn,
    .actions-cell .primary-btn,
    .actions-cell button {
        width: 100%;
        min-height: 44px;
        justify-content: center;
        white-space: normal;
    }

    .nav-menu,
    .nav-menu summary,
    .building-switcher,
    .building-switcher select {
        max-width: 100%;
    }

    .table-responsive {
        -webkit-overflow-scrolling: touch;
    }
}

@media print {
    @page {
        size: A4;
        margin: 14mm;
    }

    body {
        background: white;
    }

    header,
    .no-print {
        display: none !important;
    }

    main,
    .container {
        max-width: none;
        margin: 0;
        padding: 0;
    }

    .notice-builder {
        display: block;
    }

    .notice-paper {
        width: auto;
        min-height: auto;
        margin: 0;
        padding: 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: white;
    }

    .notice-paper h2 {
        font-size: 30px;
        margin: 38px 0 34px;
    }

    .notice-body {
        font-size: 19px;
    }

    .notice-fee-summary {
        break-inside: avoid;
    }
}

/* Login mobile readability */
.auth-card,
.login-card {
    color: #0f172a;
}

.login-card h2,
.login-card label {
    color: #0f172a;
}

.login-card label {
    display: block;
    margin: 14px 0 7px;
    font-weight: 800;
    line-height: 1.25;
}

.login-card input {
    min-height: 50px;
    background: #ffffff;
    color: #0f172a;
    caret-color: #0f766e;
    border-color: #cbd5e1;
}

.login-card input::placeholder {
    color: #64748b;
    opacity: 1;
}

.login-card input:focus {
    border-color: #0f766e;
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.16);
}

.login-card button[type="submit"] {
    width: 100%;
    min-height: 50px;
    margin-top: 8px;
    color: #ffffff;
    font-size: 16px;
}

@media (max-width: 600px) {
    body.auth-body {
        min-height: 100svh;
        overflow-x: hidden;
    }

    .auth-shell {
        width: min(100% - 24px, 520px);
        min-height: 100svh;
        grid-template-columns: 1fr;
        align-content: start;
        gap: 18px;
        padding: 18px 0 28px;
    }

    .auth-intro {
        min-width: 0;
    }

    .auth-brand {
        align-items: center;
        gap: 12px;
        margin-bottom: 0;
    }

    .auth-mark {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 24px;
        flex: 0 0 auto;
    }

    .auth-brand h1 {
        margin: 0 0 4px;
        font-size: 28px;
        line-height: 1.08;
        overflow-wrap: anywhere;
    }

    .auth-brand h1,
    .auth-card .auth-brand h1 {
        color: #0f172a;
    }

    .auth-brand p {
        max-width: 100%;
        color: #334155;
        font-size: 14px;
        line-height: 1.35;
    }

    .auth-highlights {
        display: none;
    }

    .auth-card,
    .login-card {
        width: 100%;
        justify-self: stretch;
        padding: 22px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.98);
    }

    .login-card h2 {
        margin-top: 0;
        font-size: 26px;
        line-height: 1.15;
    }

    .login-card .muted {
        color: #475569;
        margin-top: 0;
        line-height: 1.45;
    }

    .login-card form {
        margin-top: 16px;
    }

    .login-card input {
        font-size: 16px;
        margin: 0 0 12px;
    }

    .auth-extra-link {
        margin-bottom: 0;
        color: #475569;
    }
}
