@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;

}

body {
    background-color: #f7f7f7;
}


.header-wrapper {
    padding: 1px 4px 4px;
    border: 1px solid black;
    background-color: #fff;
}

.header-text {
    font-size: 18px;
    text-align: center;
    color: #263747;
    margin: 10px 0 5px;
    font-weight: 700;
    line-height: 1.5em;
}

#myForm {
    background-color: #263747;
    width: 100%;
    padding: 4% 4%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-inner-container {
    width: 100%;
    /* margin: 4% 4% 0; */
}

label {
    color: #fff;
    display: block;
    margin-bottom: 2px;
    margin-top: 6px;
}

.field-required-star {
    /* font-weight: 400; */
    font-size: 14px;
    margin-left: 5px;
    color: red;
}

input {
    display: block;
    width: 100%;
    height: 34px;
    border-radius: 0;
    border: none;
    padding: 2px 0;
}

/* .field-validation-messages {
    clear: both !important;
    display: block;
    min-height: 6px;
    position: relative;
    line-height: 15px;
} */

select {
    display: block;
    width: 100%;
    height: 36px;
}

.button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

button {
    min-width: 148px;
    min-height: 37px;
    color: #ffffff;
    font-family: Oxygen;
    font-size: 16px;
    font-weight: bold;
    border: 1px #ffc342 solid;
    border-bottom-color: #cc9c35;
    text-shadow: 0px -1px 1px #ffc342;
    background-image: linear-gradient(bottom, #cc9c35 10%, #ffff63 100%);
    background-image: -o-linear-gradient(bottom, #cc9c35 10%, #ffff63 100%);
    background-image: -moz-linear-gradient(bottom, #cc9c35 10%, #ffff63 100%);
    background-image: -webkit-linear-gradient(bottom, #cc9c35 10%, #ffff63 100%);
    background-image: -ms-linear-gradient(bottom, #cc9c35 10%, #ffff63 100%);
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.1, #cc9c35), color-stop(1, #ffff63));
    background-color: #cc9c35;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    margin: 8px auto 0 auto;
}

.form-control {
    border-radius: 0;
}