

.survey-question-container, .payment-container {
    margin: auto;
    padding-top: 2%;
}

.survey-buttons button {
    margin-right: 10px;
}

.intro-text {
    color: var(--color-accent) !important;
    padding-bottom: 15px;
    line-height: 1.2;
}

.signup-input-inline {
    display: inline;
    font-size: 28px !important;
    line-height: unset;
    padding: unset;
    margin-left: 2px;
    height: 65px !important;
    margin-right: 2px !important;
    width: unset !important;
    float: unset !important;
}
#fine-print-form .form-check-input, #consent-form .form-check-input {
    margin-top: 19px;
}
.signup-question {
    font-size: 48px;
    color: var(--color-headline);
    letter-spacing: -0.027em;
    font-weight: 500;
}

.question-sub {
    font-size: 40px;
    color: var(--color-headline);
    font-weight: 300;
}

.signup-text {
    font-size: 28px;
}

.signup-field-label {
    font-size: 30px;
    font-weight: 500;
}

.signup-larger {
    height: 65px !important;
    margin-right: 2px !important;
    width: 55% !important;
    font-size: 28px;
    float: unset !important;
}



input[type="checkbox"].signup-input-inline  {
    height: 45px !important;
    width: 30px !important;
    vertical-align: middle;
}

.button-choice-container, .prev-next-buttons, .payment-options {
    width: 100%;
    margin: auto;
    text-align: center;
}

.payment-options .btn {
    margin : 20px;
}

.button-choice-container table {
    width: 65%;
    margin: auto;
}

.button-notes {
    text-align: left;
    padding: 20px;
    font-size: 1.3em;
}

.prev-next-buttons {
    margin-top: 50px;
}

.button-choice-selected, .button-choice-not-selected {
    min-width: 25%;
    padding: 20px;
    margin-top: 10px;
    font-size: 28px;
}

.button-choice-selected {
    background-color: #ffffff;
    border: 1px solid var(--color-primary) !important;
    color: var(--color-text) !important;
    cursor: not-allowed !important;
}

.consent-box {
    width: 100%;
    height: 20vh;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #ccc;
    padding: 10px;
    box-sizing: border-box;
}

.intake-container hr {
    margin: 20px 0px 20px 0px;
}

button a {
    color: white;
    text-decoration: none;
}
.button-red {
    background-color: red;
}
/*spinner*/
:root { --brand: rgb(13,110,253); }
* { box-sizing: border-box; }
body { margin: 0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; min-height: 100vh; }

.page-spinner {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.85); /* page overlay */
}

.spinner {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 6px solid rgba(13,110,253,0.15);
    border-top-color: var(--brand);       /* rgb(13,110,253) */
    animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

@media (prefers-reduced-motion: reduce) {
    .spinner { animation: none; }
}

html:has(.page-spinner) { overflow: hidden; }

