<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">form {
    background: none;
}

form .form_fields li.clear { display:none; }
form .form_fields {
    display: flex;
    gap: 15px;
    width: 100%;
    justify-content: space-between;
}
form .form_fields .field.radio {    margin-bottom: 0;grid-column: 1 / 3;} 

form .form_fields .field {
    margin: 0;
    flex: 1;
}

form .form_fields .field label {
    color: #141414;
    font-size: 18px;
    font-weight: 600;
    display: block;
    padding: 0 0 5px;
}

form .form_fields .field input.text, form .form_fields .field input.email, form .form_fields .field input.phone {
    background: #fff;
    border: none;
    font-size: 20px;
    border: 1px solid #fff;
    color: #000;
    padding: 10px;
}




form #submit_button {
    background: #141414;
    border-color: #141414;
    outline: none;
    background-image: none;
    box-shadow: none;
    color: #fff;
    text-shadow: none;
    font-size: 20px;
    padding: 20px 40px;
    border-radius: 0;
    margin-left: auto;
    display: block;
}
form #submit_button:hover {background: #0687bd;border-color: #0687bd; }


@media screen and (max-width:991px){

    form .form_fields { display: flex; flex-flow: column; }
    form #submit_button { width: 100%; }

}</pre></body></html>