* {
    box-sizing: border-box;
}
body{
    text-align: center;
    font-family: 'Lexend', sans-serif;
}
h1{
    color: #148598;
    font-family: 'Cutive', serif;
}
input[type=text], input[type=email], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

label {
    padding: 12px 12px 12px 0;
    display: inline-block;
}

input[type=submit] {
    background-color: #04AA6D;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 15px;
}

input[type=submit]:hover {
    background-color: #45a049;
}
select{
    max-width: 200px;
}
.container {
    margin: auto;
    border-radius: 5px;
    padding: 20px;
    max-width:1500px;
    float: center;
    background-color: #f6f6f6;
}
.col-8 {
    float: left;
    width: 8%;
    margin-top: 6px;
    text-align: center;
}
.col-18R {
    float: left;
    width: 18%;
    margin-top: 6px;
    text-align: right;
}
.col-18L {
    float: left;
    width: 18%;
    margin-top: 6px;
    text-align: left;
}
.col-25 {
    float: left;
    width: 25%;
    max-width: 375px;
    margin-top: 6px;
    text-align: right;
}
.col-30{
    float: left;
    width: 30%;
    min-height: 20px;
    margin-top: 6px;
    text-align: center;
}
.col-32 {
    float: left;
    width:32%;
    margin-top: 6px;
    text-align: right;
}
.col-70{
    float: left;
    width: 70%;
    min-height: 20px;
    margin-top: 6px;
    text-align: left;
}
.col-75 {
    float: left;
    width: 75%;
    max-width: 1125px;
    margin-top: 6px;
    text-align: left;
}
.col-100{
    float: left;
    width: 100%;
    min-height: 20px;
    margin-top: 6px;
    text-align: center;
    background-color:white;
}
.col-100d{
        float: left;
        width: 100%;
        min-height: 3px;
        margin-top: 2px;
        margin-bottom: 20px;
        text-align: center;
        background-color:black;
    }
.row:after {
    content: "";
    display: table;
    clear: both;
}


/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .col-75, .col-32, .col-25, .col-18R, .col-18L, .col-8, input[type=submit] {
        width: 100%;
        max-width: 100%;
        margin-top: 0;
        text-align: left;
    }
}