/**
 * Form style used by email signup, pre-arrival, shoppes, and generic opt-in page.
 * If you need to make changes to one of the about, but not all, please create a sperate css
 */

body.collapse-menu__body--locked {
    overflow: hidden;
}

.form__main-wrapper {
    border-color: #C5C6BC;
    color: #333;
    font-family: "Arizona Flare", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.3;
    margin-top: 80px;
    margin-bottom: 160px;
}

.form__main-wrapper a {
    color: #333;
}

.form__banner-container {
    display: flex;
    justify-content: center;
    margin: auto auto 80px;
    width: 344px;
    height: 194px;
}

.form__banner-container img {
    width: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .form__banner-container {
        width: 1208px;
        height: 242px;
    }
}

.form__content-container {
    width: 344px;
    margin: auto;
}

@media (min-width: 768px) {
    .form__content-container {
        width: 792px;
        margin: auto;
    }
}

.form__form-header-container {
    margin: 80px 0;
}

.form__form-header {
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 40px;
    font-size: 24px;
}

@media (min-width: 768px) {
    .form__form-header {
        margin-bottom: 40px;
        font-size: 32px;
    }
}

.form__form-subheader {
    text-align: center;
    font-weight: 300;
    line-height: 1.5em;
    font-size: 15px;
}

@media (min-width: 768px) {
    .form__form-subheader {
        font-size: 16px;
    }

}

.form__input-container {
    border: #C5C6BC 1px solid;
    background-color: rgba(225, 226, 214, 0.5);
    padding: 16px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.form__form-group-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.form__input-container-header {
    text-transform: uppercase;
}

.form__input-container ul {
    margin-bottom: 0;
    font-size: 11px;
}

@media (min-width: 768px) {
    .form__input-container {
        padding: 20px;
    }
}

@media (min-width: 768px) {
    padding: 20px;
    gap: 40px;
}

.form__form-group {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 312px;
    min-width: 312px;
}

.form__form-group label {
    font-size: 16px;
    font-weight: 300;
}

.form__form-group input,select,option {
    font-size: 16px;
    font-weight: 300;
}

.form__form-group.form__form-group--full-width {
    width: 100%;
}

@media (min-width: 768px) {
    .form__form-group {
        width: 356px;
    }
}

.form__input-label {
    margin-bottom: 8px;
}

.form__input-field {
    background-color: transparent;
    border-width: 0 0 1px;
    font-size: 16px;
    border-bottom: 1px #C5C6BC solid;
    color: #333;
    font-weight: 300;
    font-family: "Arizona Flare", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

@media (min-width: 768px) {
    .form__input-field {
        font-size: 18px;
    }
}

.form__input-field.form__input-field--filled {
    background-color: #E1E2D6;
}

.form__input-field::placeholder{
    color: #C5C6BC;
    font-weight: 300;
}

input[type="date"].form__input-field::-webkit-datetime-edit-text,
input[type="date"].form__input-field::-webkit-datetime-edit-month-field,
input[type="date"].form__input-field::-webkit-datetime-edit-day-field,
input[type="date"].form__input-field::-webkit-datetime-edit-year-field {
    color: #C5C6BC;
    font-weight: 300;
}

.form__tnc {
    font-size: 12px;
    font-weight: 300;
    margin-top: 16px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .form__tnc {
        margin-top: 40px;
    }
}

.form__tnc-header {
    font-weight: bold;
}

.form__tnc a {
    color: #333;
}

.form__recaptcha-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 40px;
}

.form__recaptcha-error {
    color: red;
    margin-bottom: 4px;
}

.form__submit-container {
    display: flex;
    justify-content: center;
}

.form__form-submit {
    background-color: #000;
    color: #FFF;
    border-radius: 0;
    font-size: 14px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-family: "Arizona Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.form__prompt-container {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}