body {
    letter-spacing: 0px;
    font-family: Spectral, Arial;
    font-size: 22px;
    line-height: 30px;
    font-weight: 300;
    color: #1E1E1E;
}

input[type=text], select, textarea {
    width: 100%;
    padding: 0px;
    border: none;
    box-sizing: border-box;
    margin-top: 0px;
    margin-bottom: 20px;
    resize: vertical;
    font-family: Spectral, Arial;
    font-size: 1em;
}

input[type=text] {
    border-bottom: 2px solid #FFD100;
}
select {
    border: 1px solid #FFD100;
    padding: 10px;
}

.container {
    border-radius: 5px;
    padding: 20px;
    width: 100%;
    max-width: 800px;
}

div.checkbox {
    margin-bottom: 5px;
}
input[type="checkbox"] {
    -webkit-appearance: none;
    padding: 15px 15px 5px 5px;
    margin-bottom: -5px;
    background: transparent linear-gradient(47deg, #FFD100 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
    border: 2px solid #fff;
}

input[type="checkbox"]:checked {
    -webkit-appearance: none;
    padding: 15px 15px 5px 5px;
    margin-bottom: -5px;
    background: #1E1E1E 0% 0% no-repeat padding-box;
    border: 2px solid #FFD100;
}

input[type="submit"]  {
    background: #FFD100 0% 0% no-repeat padding-box;
    border: none;
    font-weight: bold;
    color: black;
    padding: 12px 40px;
    font-family: FuturaPTWebBold, Arial;
    letter-spacing: 2px;
    font-size: 1em;
    text-transform: uppercase;
    cursor: pointer;
}
input[type="submit"]:hover {
    background-color: #1E1E1E;
    -webkit-transition: all 0.3s ease;;
    transition: all 0.3s ease;
    color: #ffffff;
}

label {
    font-style: italic;
}

.errorText {
    color: red;
    margin-bottom: 10px;
    font-size: 90%;
}

.infoText {
    margin: 20px 0;
}
.infoText a {
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    color: black;
}

a {
    font-family: FuturaPTWebBold, Arial;
    letter-spacing: 2px;
    text-transform: uppercase;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    color: #1E1E1E;
    text-decoration: none;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #ffd100), to(#ffd100));
    background-image: linear-gradient(to right, rgba(30, 30, 30, 0.15)0, rgba(30, 30, 30, 0.15) 100%);
    background-position: 0 0.7em;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    font-weight: bold;
    font-size: 18px;
}


a:hover {
    text-decoration: none;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #ffd100), to(#ffd100));
    background-image: linear-gradient(to right, #ffd100 0, #ffd100 100%);
    background-position: 0 0.7em;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.hiddenCheckbox {
    color: grey;
    visibility: hidden;
}
.mandatoryHint {
    font-size: 85%;
}

.buttonDiv {
    width: 100%;
    text-align: center;
}


