
.formContainer {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

.formContainer > .field {

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    margin-top: 10px;
    border: 3px solid transparent;
    padding: 10px;
}

.formContainer > .field.error {
    border: 1px solid red;
}

.formContainer > .field > .top {

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}

.formContainer > .field .label {

    margin-top: 4px;
    margin-right: 20px;

    min-width: 150px;
    max-width: 150px;

    color: black;

}

.formContainer > .field .input {

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;

    min-width: 300px;
    max-width: 300px;
}

.formContainer > .field .input select,
.formContainer > .field .input input[type=tel],
.formContainer > .field .input input[type=email],
.formContainer > .field .input input[type=text] {

    padding: 0 5px;

    width: 290px;
    height: 26px;

    font-size: 20px;

}

.formContainer > .field .input select {
    width: 300px;
    height: 30px;
}

.formContainer > .field .input textarea {

    padding: 0 5px;

    width: 290px;
    height: 100px;

    min-width: 290px;
    max-width: 290px;
    min-height: 100px;
    max-height: 500px;

    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 20px;
}

.formContainer > .field .input .submit {

    padding: 0px 30px;

    border-radius: 20px;

    background-color: blue;
    color: white;

}

.formContainer > .field .input .button {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 0px 30px;

    border-radius: 20px;

    background-color: blue;
    background-color: rgb(1, 131, 0);
    color: white;

    /* Disable text/content selection. */
    -webkit-touch-callout : none;
    -webkit-user-select : none;
    -khtml-user-select : none;
    -moz-user-select : none;
    -ms-user-select : none;
    user-select : none;

}

.formContainer > .field .input .button.disabled {
    background-color: gray;
    color: #d3d3d3;
    cursor: default;
}

.formContainer > .field .input .button > div {
}

.formContainer > .field .input > a:active {
    text-decoration: none;
}

.formContainer > .field .input > a:active > div > div {
    color: navajowhite;
    text-decoration: none;
}

.formContainer > .field.error > .bottom {
    padding: 10px 0 0 50px;
    color: #ff939c;
    color: red;
    font-size: 90%;
    font-weight: bold;
}
