@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

body {
    margin: 0;
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    /* Vaytiv Brand Palette (ticket 4-redesign) */
    --accent-blue:       #2E4057;
    --powder-blue:       #7B9EB5;
    --powder-blue-hover: #6A8DA4;
    --text-dark:         #1F2937;
    --text-muted:        #6B7280;
    --page-bg:           #E9EDF2;
    --header-bg:         #EDF4F0;
    --header-border:     #D4DFD8;
    --card-bg:           #FFFFFF;
    --white:             #ffffffde;
    --white-full:        #ffffff;
    --input-border:      #D1D5DB;
    --input-placeholder: #9CA3AF;
    --error-red:         #DC2626;
    --success-green:     #15803D;

    color: var(--text-dark);
    background: var(--page-bg);
}

* {
    box-sizing: border-box;
}


input:not([type="radio"]) {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


.app-form-wrapper {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

header {
    width: 100%;
}

/*typography, links, and buttons */

h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
    margin: 0;
}

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none;
}

a.passcode-link,
input.passcode-link,
input.blue-link {
    margin-top: 10px;
    border: none;
    background: transparent;
    color: var(--accent-blue);
    font-weight: 400;
    display: block;
    text-decoration: underline;
    cursor: pointer;
}

.download-icon {
    margin-top: 10px;
}

.download-link {
    display: flex;
    align-items: center;
}


h1.large-heading,
h3.receipt-confirmation-text,
h3.large-heading {
    font-size: 1.5rem;
}

h3.medium-heading,
h2.medium-heading {
    font-size: 1.15rem;
    font-weight: normal;
    color: var(--text-muted);
}

h3.medium-heading {
    font-weight: 600;
}

h3.medium-heading.dark-text {
    color: var(--text-dark);
}

h3.warning-text {
    color: var(--text-muted);
}

.back-browser-warning {
    background: var(--error-red);
    text-align: center;
    margin-top: 1.5rem;
}

.button {
    font-weight: 700;
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}

.button.button-main {
    background: var(--powder-blue);
    border: 1px solid var(--powder-blue);
    border-radius: 5px;
    color: var(--white-full);
    display: block;
    font-size: 1rem;
    margin-top: 2rem;
    padding: 15px 10px;
    text-decoration: none;
    transition: all .35s ease-out;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.button.button-secondary {
    background: none;
    border: 1px solid var(--accent-blue);
    border-radius: 5px;
    color: var(--accent-blue);
    font-size: 1rem;
    margin-top: 2rem;
    padding: 15px 10px;
    text-decoration: none;
    transition: all .35s ease-out;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.button-tertiary {
    display: none !important;
}


.button-main:hover,
.button-main:focus,
.button-main:active {
    background: var(--powder-blue-hover);
    border-color: var(--powder-blue-hover);
    color: var(--white-full);
}

.button.button-secondary:hover,
.button.button-secondary:focus,
.button.button-secondary:active {
    background: rgba(46, 64, 87, 0.06);
    color: var(--accent-blue);
}

.form-label {
    color: var(--text-muted);
    display: block;
    font-size: 1rem;
    width: 100%;
}

.form-label>span:nth-of-type(2) {
    font-weight: 600;
}

#MainContent_ClientInformationLabel {
    line-height: 40px;
}

#MainContent_PaymentWarningLabel1 {
    display: block;
    text-align: center;
}

.error-text {
    display: block;
    text-align: center;
}

.client-information-item-label {
    font-weight: bold;
    font-weight: bold;
    font-size: 1.15rem;
    margin-right: .25rem;
}

.client-information-item-text {
    font-size: 1.15rem;
    white-space: nowrap;
}

.verification-label {
    display: block;
    margin-top: 20px;
}

.verification-label-content {
    color: var(--text-dark);
    display: block;
    margin-top: 5px;
}

.input-details {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 10px;
}

#EmailDiv,
#loading {
    text-align: center;
}

#loading {
    background-color: rgba(216, 216, 216, .8);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
}

#loading-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#loading-text {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    text-align: center;
}

#MainContent_SignupDiv .button {
    margin-top: .5rem;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.spinner {
    animation: spin 1s linear infinite;
    width: 50px;
    height: 50px;
    display: block;
    margin: 0 auto;
}

.half-circle {
    fill: none;
    stroke: var(--accent-blue);
    stroke-width: 6;
    stroke-dasharray: 440;
    stroke-dashoffset: 220;
}


/* helper classes*/
.margin-top,
span.margin-top {
    margin-top: 1.5rem;
}

.small-margin-top,
span.small-margin-top {
    margin-top: 10px;
}

.mobile-margin,
span.mobile-margin {
    margin-top: 1.5rem;
}

.margin-bottom {
    margin-bottom: 1.5rem;
}

.margin-left {
    margin-left: .5rem;
}

.center {
    text-align: center;
}

.margin-center {
    margin: 0 auto;
}

.justify-center {
    justify-content: center;
}

.line-break {
    border-bottom: 1px solid var(--input-border);
}

/*block layouts*/

.header-inner-wrapper {
    background: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    width: 100%;
}

.header-inner-wrapper img {
    height: 44px;
    width: auto;
    max-width: 100%;
    display: block;
}

.app-content-outer-container {
    background: var(--card-bg);
    border-radius: 5px;
    border-top: 30px solid var(--accent-blue);
    box-shadow: 4px 6px 15px rgba(0 0 0 / 0.05);
    margin: 50px 20px;
    max-width: 1000px;
    padding: 20px;
    position: relative;
    min-width: 400px;
}

.app-content-inner-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.step-counter-container {
    color: var(--white);
    position: absolute;
    text-align: center;
    top: -20px;
    width: 100%;
    z-index: 1;
}


.paymentcontainer,
.account-verification-wrapper,
.dual-column-item-wrapper {
    width: 100%;
}


.required-field-notifier {
    display: inline;
}

.expiration-input-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.text-input-wrapper {
    width: 100%;
}

.text-input,
input.aspNetDisabled[type="text"] {
    border: 1px solid var(--input-border);
    border-radius: 5px;
    font-size: 1rem;
    padding: 15px 20px;
    margin-top: .5rem;
    text-align: left;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.text-input::placeholder {
    color: var(--input-placeholder);
}

.text-input:focus,
.text-input:active,
.text-input:focus-within,
.text-input:focus-visible {
    border-color: var(--accent-blue);
    outline: none;
    background: rgba(46, 64, 87, 0.04);
}


.text-input.expiration-input {
    width: calc(50% - .25rem);
}

.expiration-input-wrapper .expiration-input:nth-of-type(2) {
    margin-left: .5rem;
}

.radio-wrapper {
    display: flex;
}

.gray-box {
    background: var(--page-bg);
    padding: 0 7px 20px;
}

.dropdown {
    border: 2px solid var(--input-border);
    border-radius: 0;
    padding: .85rem 0;
    margin-top: .5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select {
    background: white;
}

select,
select option[value=""] {
    color: var(--input-placeholder);
}

select:has(option:checked:not([value])),
select:has(option:checked:not([value=""])),
select option {
    color: var(--text-dark);
}


.client-information-wrapper {
    width: 100%;
}

.client-information-item-wrapper {
    display: flex;
    flex-direction: column;
    margin-top: .5rem;
}

.nav-buttons-wrapper {
    width: 100%;
}

.nav-buttons-inner-wrapper,
.dual-columns-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}





.steps-status-wrapper {
    border-top: .5rem solid var(--accent-blue);
    display: flex;
    justify-content: space-between;
    padding-top: .5rem;
    margin-top: 1rem;
    width: 100%;
}


.step-indicator {
    color: var(--accent-blue);
    margin-left: .25rem;
}


.dual-columns-wrapper>.form-label:nth-of-type(2) {
    margin-top: 1.5rem;
}

.phone-number-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


@media screen and (min-width: 600px) {

    .button-main,
    .button-secondary {
        max-width: 280px;
    }

    .nav-buttons-inner-wrapper.justify-center {
        justify-content: center;
        align-items: center;
    }
}

.bounce2 {
    animation: bounce2 2.5s ease infinite;
}

@keyframes bounce2 {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-4px);
    }

    60% {
        transform: translateY(-2px);
    }
}


@media screen and (min-width: 1000px) {
    .phone-number-wrapper {
        flex-direction: row;
    }

    .mobile-margin {
        margin-top: 0;
    }

    .header-inner-wrapper {
        justify-content: flex-start;
        background: var(--header-bg);
    }

    .app-content-outer-container {
        padding: 50px 100px;
    }

    .app-content-inner-container {
        min-width: 679px;
    }

    /*  .client-information-item-wrapper {
        align-items: flex-end;
        flex-direction: row;
        justify-content: space-between;
    }*/

    .nav-buttons-inner-wrapper,
    .dual-columns-wrapper {
        align-items: center;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .dual-column-boxes {
        align-items: flex-start;
    }

    .dual-columns-wrapper>.form-label:nth-of-type(2) {
        margin-top: 0;
    }

    /*  .text-input {
        width: 60%;
        max-width: 280px;
    }

    .text-input-wrapper {
        width: 60%;
        max-width: 280px;
    }*/

    .text-input-wrapper .text-input {
        width: 100%;
    }

    .text-input.full-width-input {
        width: 100%;
        max-width: none;
    }

    .expiration-input-wrapper {
        justify-content: space-between;
        align-items: baseline;
    }

    .text-input.expiration-input {
        /* width: 120px; */
    }
}