/*
    Matthew Cherry
    12/03/2023
*/

input, textarea {
    margin-top: 1em;
    margin-bottom: 1em;
    padding: 1em;
    display: block;
}

form {
    width: 85%;
    margin: 0 auto;
    border-style: solid;
    padding: 1em;
}

input[type="submit"], 
input[type="reset"] {
    display: inline-block;
    font-weight: bold;
    background-color: rgb(178, 83, 83);
    color: rgb(212, 212, 212);
}

textarea {
    width: 95%;
    height: 50px;
}

textarea, form, input {
    border-color: rgb(178, 83, 83);
    border-width: 2px;
    border-radius: 25px;
}

label {
    font-weight: bold;
}

input[type="submit"]:hover, 
input[type="reset"]:hover {
    background-color: rgb(212, 212, 212);
    color: rgb(178, 83, 83);
} 