<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    box-sizing: border-box;
}

hr {
    border: none;
    border-bottom: 2px solid #ddd;
    margin: 16px 0;
}

strong {
    color: #000;
}

ol {
    margin: 0;
    padding: 0;
    list-style-position: inside;
}

.container {
    max-width: 960px;
    margin: 0 auto;
}

.container--center {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.row {
    display: flex;
    align-items: stretch;
}
@media only screen and (max-width: 640px) {
    .row {
        display: block;
    }
}

.col {
    padding: 0 16px;
}

@media only screen and (max-width: 640px) {
    .col {
        width: 100%;
    }
}

.col--1-1 {
    width: 100%;
}


.col--8-12 {
    width: 66.66%;
}

.col--6-12  {
    width: 50%;
}

.col--4-12 {
    width: 33.33%;
}

.col--submit {
    align-self: flex-end;
    text-align: right;
}


@media only screen and (max-width: 640px) {
    .col--submit {
        align-self: flex-end;
        text-align: left;
        margin: 16px 0;
    }
}

.ca-form__field {
    display: flex;
    margin-bottom: 8px;
}

@media only screen and (max-width: 640px) {
    .ca-form__field {
        display: block;
    }
}

.ca-form__field__label {
    width: 130px;
    text-align: right;
    padding-right: 16px;
}

@media only screen and (max-width: 640px) {
    .ca-form__field__label {
        width: 100%;
        text-align: left;
        padding-right: 0;
        line-height: 1.5;
    }
}

.ca-form__field__label--checkbox {
    display: flex;
    line-height: 1.5;
    text-align: left;
    width: 100%;
    margin-bottom: 8px;
}

.ca-form__field__label--checkbox input[type=checkbox] {
    position: static;
    margin-right: 8px;
    display: inline-block;
    visibility: visible;
}

.ca-form__field__element-wrapper {
    display: block;
    width: 100%;
}

.ca-form__field__element {
    width: 100%;
    height: 40px;
    line-height: 40px;
    border-radius: 0;
    border: 1px solid #ccc;
}

select.ca-form__field__element {
    line-height: 40px;
    height: 40px;
    border: 1px solid #333;
}

.field--error .ca-form__field__element {
    border: 1px solid red;
}

.field--error input[type=checkbox] {
    outline: 1px solid red;
}

.ca-form__field--2-line {
    display: block;
}

.ca-form__field--2-line .ca-form__field__label {
    width: 100%;
    display: block;
    text-align: left;
}

.ca-form__submit {
    font-size: 18px;
    background: blue;
    color: #fff;
    padding: 16px 128px;
    border-radius: 8px;
    border: none;
    -webkit-appearance: none;
    align-self: flex-end;
    cursor: pointer;
}

.thank-you__title {
    margin: 0 0 16px 0;
    text-align: center;
}

.thank-you__subtitle {
    font-weight: normal;
    color: #555;
    margin: 0 0 16px 0;
    text-align: center;
}
</pre></body></html>