body, html, form {
    margin: 0 !important;
    padding: 0 !important;
}



input, select {
    padding: 2px 7px !important;
    border-radius: 5px;
    font-size: 13px;
    line-height: 35px;

    color: #707070;
    border: 2px solid #FAF8F8;
    width: calc(100% - 18px) !important;
    background-color: #FAF8F8;
    box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.2);
    -webkit-appearance: none;
    margin-right: 2px;

}

select {
    height: 43px;
    background-color: #FAF8F8;
    width: 100% !important;
    background-image: url(../imgs/sweepstakes/down_gray.png);
    background-size: 14px auto;
    background-repeat: no-repeat;
    background-position: 98%;
    color: #707070;
}

::placeholder {
    color: #707070;
    opacity: 1;
    /* Firefox */
}

::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: #707070;
}

form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

form>p {
    text-align: center;
    flex: 1 0 101px;
}

form>p.first_name {
    flex: 1 0 60px;
}

form>p.last_name {
    flex: 1 0 80px;
}

form .form-field {
    width: 33%;
    ;
}

form .form-field.error input, form .form-field.error select {
    border-color: red;
}

form.form input {
    font-weight: 400;
    padding: 1px;

}

form.form input:focus-visible {
    outline: none;
    box-shadow: none
}

form .error.no-label,
form .errors {
    display: none;
}

form .submit {
    text-align: left;
    flex: 1 !important;
}

form .submit input {
    color: #fff;
    border-radius: 6px !important;
    background-color: #BA8D3C;
    border: 2px solid #BA8D3C;
    cursor: pointer;
    width: auto !important;
    box-shadow: none;
    -webkit-appearance: none;
}



form.form p {
    margin: 0px !important;
    padding: 0px !important;

}

form .form-field {
    position: relative;
}

.form-field.error::before {
    content: 'Required';
    position: absolute;
    right: 5px;
    top: -1px;
    color: red;
    font-size: 11px;
    font-weight: 300;
}