* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
}
p {
    font-size: 18px;
    font-family: "Raleway", sans-serif;
    line-height: 1.75;
}

.small {
    font-size: 12px;
}

main.sub {
    background: #eee;
    padding: 3.75em 1em;
    min-height: 50vh;
}
main.sub .wrap {
    max-width: 1200px;
    margin: 0 auto;
}
main.sub h1 {
    font-family: "Open Sans", sans-serif;
    margin-bottom: 20px;
    font-size: 32px;
}
#status {
    max-width: 1200px;
    margin: 0 auto;
}

/* FORMS */
form {
    font-family: "Open Sans", sans-serif;
    max-width: 1200px;
    margin: 50px auto;
    display: block;
}
form legend {
    font-size: 24px;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    background: #111;
    color: white;
    padding: 5px 15px;
}
form fieldset {
    background: #f3f3f3;
    padding: 25px;
    display: block;
    width: 100%;
    margin: 0 auto;
    border: 1px solid #ccc;
}
@media screen and (max-width: 475px) {
    form fieldset {
        background: none;
        border: none;
        padding: 0 25px;
    }
}
form fieldset h2 {
    font-family: "Raleway", sans-serif;
}
form label {
    display: block;
    margin-bottom: 7px;
    left: 2px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    font-family: "Open Sans", sans-serif;
}
form label span {
    color: red;
    font-size: 12px;
    font-family: "Open Sans", sans-serif;
}
form input,
form select,
form textarea {
    border: 1px solid #ccc;
    font-size: 16px;
    padding: 15px;
    border-radius: 5px;
    display: block;
    width: 100%;
    margin-bottom: 20px;
    background: white !important;
}
@media screen and (max-width: 475px) {
    form select {
        -webkit-appearance: none;
    }
}
form textarea {
    height: 130px;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 0;
}
form button {
    background: #111;
    color: white;
    padding: 20px;
    border-radius: 3px;
    font-size: 14px;
    width: fit-content;
    margin-top: 20px;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    transition: background 0.3s ease;
}
@media screen and (max-width: 475px) {
    form button {
        display: block;
        margin: 0 auto;
        width: calc(100% - 50px);
    }
}
form button:hover {
    background: #000;
    cursor: pointer;
}

.grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    width: 100%;
}

@media screen and (max-width: 475px) {
    input + .grid2 {
        grid-template-columns: 1fr;
    }

    .wrap {
        padding: 0 8px !important;
    }
}
.full-width {
    grid-column-start: 1;
    grid-column-end: 3;
}

form .row div {
    display: inline-block;
    width: 50%;
}

form .row div:first-of-type {
    padding-right: 15px;
}

form .row div:last-of-type {
    padding-left: 15px;
}

@media screen and (max-width: 475px) {
    .status br {
        display: none;
    }
}
