:root{
    --app-bg:#efeeeb;
    --surface:#ffffff;
    --text:#0a2540;
    --muted:#566b8d;
    --border:rgba(2,6,23,.08);
    --shadow:0 10px 30px rgba(2,6,23,.05);
    --purple:#3D35FF;
    --purple-dark:#3129e6;
    --purple-glow:rgba(61,53,255,.25);
    --success-bg:#eef8f1;
    --success-text:#18794e;
}

html, body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        Arial,
        sans-serif;
}

/*BODY*/
body{
    background:var(--app-bg);
    color:var(--text);
}



/*BUTTONS*/
.btn-990{
    border:none;
    border-radius:12px;
    padding:12px 16px;
    font-size: 1rem;
    font-weight:500;
    cursor:pointer;
    transition:.18s ease;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
}


.btn-990--cancel{
    background:#fff;
    border:1px solid #6c757d;
}

.btn-990--cancel:hover{
    background:#6c757d;
    color:#fff;
}

.btn-990--primary{
    background:#0d6efd;
    color:#fff;
    box-shadow:0 8px 18px;
}

.btn-990--primary:hover{
    background:#0a58ca;
}

@media(max-width:640px){
    .btn-990{
        width:100%;
    }

}

/*CARD SECTIONS*/
.card-main-990{
    background:var(--surface);
    border:1px solid var(--border);
    border-radius: 7.5px;
    box-shadow:var(--shadow);
    overflow:hidden;
    margin-bottom: 1.25rem;
}

.card-header-990{
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid var(--border);
    background: #f2f7ff;
}

.card-title-990 {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.1;
    font-weight: 700;
    color: var(--text);
}

.card-subtitle-990{
    margin: .3rem 0 0 0;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.25rem;
}

.header-accent{
    width:52px;
    height:4px;
    border-radius:999px;
    background:#0d6efd;
    margin-top:5px;
}

.card-body-990{
    padding: 1.25rem;
}


.card-actions-990{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e5e7eb;
}


.card-eyebrow {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #084298;
    margin-bottom: .45rem;
}



@media(max-width:640px){
    .card-actions-990 {
        flex-direction: column;
        gap: 10px;
    }
}

/*NOTES*/
.note-990{
    margin-top:16px;
    font-size:14px;
    color:var(--muted);
}


/*FOOTER*/
/* =========================
   App Footer
========================= */

.app-footer{
    background:#1E2431;
    color:rgba(255,255,255,.85);
    padding:22px 0;
    font-size:.9rem;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-brand{
    font-size:1rem;
    color:#fff;
}

.footer-subtext{
    font-size:.8rem;
    opacity:.8;
}

.footer-links a{
    color:rgba(255,255,255,.85);
    text-decoration:none;
    font-weight:500;
}

.footer-links a:hover{
    color:#fff;
}

.footer-copy{
    opacity:.8;
}

/* Mobile spacing */
@media (max-width:768px){

    .footer-brand{
        justify-content:center;
    }

    .footer-copy{
        text-align:center;
    }

}


.review-label{
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--muted);
}


/* =========================
   FORMS
========================= */
::placeholder {
    color: rgba(33, 37, 41, 0.35) !important;
    opacity: 1;
}

.form-control:focus,
.form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.45),
    0 4px 10px rgba(13, 110, 253, 0.15);
    outline: none;
}

/* Checkboxes */
.form-check-input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.45),
    0 4px 10px rgba(13, 110, 253, 0.15);
    outline: none;
}


/* =========================
   Auth Page
========================= */

.auth-page-990{
    min-height: 100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px 16px;
    background-color: #efeeeb;
}

.auth-shell-990{
    width:100%;
    max-width:520px;
}

.auth-card-990{
    border-radius:16px;
}

.auth-form-label-990{
    font-size:.92rem;
    font-weight:700;
    letter-spacing:-.01em;
    color:var(--text);
    margin-bottom:.55rem;
}

.auth-row-990{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.auth-meta-990{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-top:.25rem;
    margin-bottom:1rem;
}

.auth-link-990{
    color:#0d6efd;
    font-weight:700;
    text-decoration:none;
}

.auth-link-990:hover{
    color:#084298;
    text-decoration:underline;
}

.auth-footer-990{
    margin-top:1rem;
    text-align:center;
    color:rgba(10,37,64,.58);
    font-size:.86rem;
    font-weight:600;
}

.auth-footer-990 a{
    color:inherit;
    text-decoration:none;
}

.auth-footer-990 a:hover{
    text-decoration:underline;
}

.form-errors{
    border-radius:12px;
    border:1px solid rgba(180,35,24,.18);
    background:#fff4f2;
    color:#9f2d20;
    padding:.95rem 1rem;
}

.form-errors ul{
    padding-left:1rem;
    margin:0;
}

@media (max-width:640px){
    .auth-page-990{
        padding:20px 12px;
    }

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

    .auth-meta-990{
        flex-direction:column;
        align-items:flex-start;
    }
}


/* =========================
   Filling Call Outs
========================= */

/* Filing info header */

.filing-info-row{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    margin-top:10px;
}

.filing-info-item{
    padding:12px 16px;
    border:1px solid var(--border);
    border-radius:8px;
    background:#f8fafc;
    min-width:220px;
}

.filing-info-label{
    font-size:.75rem;
    text-transform:uppercase;
    letter-spacing:.04em;
    font-weight:700;
    color:var(--muted);
}

.filing-info-value{
    font-size:1rem;
    font-weight:700;
    color:var(--text);
}

