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