#banner-forms ul {
    padding: 0;
    list-style: none;
}

#banner-forms ul .gfield_label {
    display: none;
}

#banner-forms ul .gfield {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

#banner-forms ul .gfield input,
#banner-forms ul .gfield select,
#banner-forms ul .gfield textarea {
    display: block;
    width: 100%;
    min-height: 50px;
    color: #000;
    font-size: 15px;
    padding: 5px 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #000;
}
#banner-forms ul .gfield input:focus,
#banner-forms ul .gfield select:focus,
#banner-forms ul .gfield textarea:focus{
    outline: none;
    border-bottom-color: #113c78;
}
#banner-forms .button {
    text-transform: uppercase;
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.88px;
    border: 2px solid #113c78;
    background: #3ac96e;
    color: #fff;
    margin: auto;
    display: block;
    border-radius: 40px;
    width: 100%;
}
.additional-text h6 {
    color: #333;
    font-size: 18px;
}
#banner-forms .button:hover{
    background: #113c78;
}
#banner-forms input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #000;
}
#banner-forms input::-moz-placeholder { /* Firefox 19+ */
    color: #000;
}
#banner-forms input:-ms-input-placeholder { /* IE 10+ */
    color: #000;
}
#banner-forms input:-moz-placeholder { /* Firefox 18- */
    color: #000;
}

#banner-forms .validation_message {
    display: none;
}

#banner-forms .validation_error {
    display: none;
}

#banner-forms .gfield_error * {
    border-color: red !important;
}

#banner-forms .gfield_error input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: red;
}
#banner-forms .gfield_error input::-moz-placeholder { /* Firefox 19+ */
    color: red;
}
#banner-forms .gfield_error input:-ms-input-placeholder { /* IE 10+ */
    color: red;
}
#banner-forms .gfield_error select,
#banner-forms .gfield_error textarea{
    color: red !important;
}
#banner-forms .gfield_error input:-moz-placeholder { /* Firefox 18- */
    color: red;
}