.form-holder .wpcf7-form {
    display: flex;
    flex-direction: column;
}

.custom-form {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1.25rem;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.6rem 0.75rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

.form-control:focus {
    border-color: rgb(134,182.5,254);
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(0,0,0,.25)
}

.custom-form .form-control {
    font-size: 0.75rem;
    border-radius: 0;
    background-color: #E5FCF5;
}

.btn-submit {
    width: 5rem;
    height: 2.5rem;
    align-self: flex-end;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'ABC Arizona Flare';
    color: #C5D7D2;
    background-color: #151F33;
    text-transform: uppercase;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none; /* Good practice for Firefox too */
    appearance: none;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

@media (max-width: 767px) {
    .btn-submit-contact {
        margin-top: 1.25rem;
    }
}

@media (hover: hover) {
    .btn-submit:hover {
        color: #151F33;
        background-color: #E5FCF5;
    }
}

.form-control::placeholder {
    font-size: 0.75rem;
    opacity: 1;
}

.form-control::-webkit-input-placeholder {
    font-size: 0.75rem;
    opacity: 1;
}

.form-control::-moz-placeholder {
    font-size: 0.75rem;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    font-size: 0.75rem;
    opacity: 1;
}

.wpcf7-not-valid-tip {
    margin-top: 0.5rem;
    color: #151F33;
    text-transform: uppercase;
}

/* Hides the loading spinner (animated GIF or image) */
.wpcf7-spinner {
    display: none !important;
}

.radio-list-style {
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
}

.radio-list-style .wpcf7-list-item {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0;
}

.radio-list-style .wpcf7-list-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    margin: 0;
    z-index: 2;
}

.radio-list-style .wpcf7-list-item-label {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    padding-left: 1.25rem;
    z-index: 1;
}

.radio-list-style .wpcf7-list-item-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 0.625rem;
    width: 0.625rem;
    background-color: #E5FCF5;
    transition: all 0.2s ease-in-out;
}

.radio-list-style input[type="radio"]:checked + .wpcf7-list-item-label::after {
    content: '';
    position: absolute;
    left: 0.15rem;
    top: 0.3rem;
    width: 0.3rem;
    height: 0.65rem;
    border: solid #151F33;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #E5FCF5 inset !important;
    -webkit-text-fill-color: #151F33 !important;
    transition: background-color 5000s ease-in-out 0s;
}