 body {
    position: absolute;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    border: none;
    font-family: Nunito, sans-serif;
}

#grad {
    background-image: linear-gradient(to bottom, #729b29, white);
    position: absolute;
    text-align: center;
    margin: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
}

h3 {
    margin: 10% 0 0 0;
    padding: 0;
    font-size: 48px;
    font-family: Nunito, sans-serif;
    color: white;
    font-weight: bolder;
}

h5 {
    margin: 12px 10% 12px 10%;
    padding:0;
    font-size: 28px;
    font-weight: normal;
    font-family: Nunito, sans-serif;
    color: white;
}

textarea {
    resize: vertical;
    margin-top: 16px;
    box-sizing: border-box;
    width: 85%;
    padding: 5px 0 0 5px;
    font-size: 16px;
    font-weight: normal;
    border-style: solid;
    border-width: thin;
    border-radius: 11px;
    border-color: white;
}

select,
option {
    margin-top: 16px;
    margin-bottom: 16px;
    box-sizing: border-box;
    background-color: white;
    color: #2D2C34;
    width: 85%;
    height: 38px;
    font-size: 16px;
    font-weight: normal;
    font-family: Nunito, sans-serif;
    border-color: white;
    border-radius: 11px;
    border-style: solid;
    border-width: thin;
}

.info-message {
    text-align:center;
    font-weight:600;
    white-space: pre-wrap;
    margin-top: 12px;
    margin-bottom: 12px;
    color: #2D2C34;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
    text-align: left;
    margin-top: 16px;
    margin-bottom: 16px;
    box-sizing: border-box;
    background: white;
    width: 85%;
    height: 38px;
    border-color: white;
    color: #2D2C34;
    font-weight: normal;
    font-size: 16px;
    border-radius: 11px;
    border-style: solid;
    border-width: thin;
    padding:0 0 0 5px;
}

::placeholder {
    color: #2D2C34;
    font-weight: normal;
    font-family: Nunito, sans-serif;
    font-size: 16px;
}

input[type="submit"] {
    display: block;
    width: 150px;
    height: 40px;
    margin: 32px auto 16px;
    font-size: 16px;
    letter-spacing: 0.4ch;
    font-weight: 600;
    background: rgb(77, 76, 84);
    border-color: #6E6A79;
    color: white;
    border-style: solid;
    border-radius: 11px;
    cursor: pointer;
    transition: background-color 150ms, color 150ms ease-in-out;
    box-shadow: 0 10px 20px 0 rgba(0,0,0,0.20);
}
 input[type="submit"]:hover {
     background: rgb(45,44,52);
 }

input[type="checkbox"] {
    margin-top: 16px;
    margin-bottom: 16px;
}

.control-label {
    color: #2D2C34;
    margin-top: 16px;
}

:link {
    color: #6E6A79;

}

.alert-danger {
    text-align:center;
    font-size: 12px;
    color: #DE0E0E;
    font-weight: 600;
    background-color: transparent;
    white-space: pre-wrap;
    margin-top: 12px;
    margin-bottom: 12px;
}

