/* To keep font more consistent throughout */
button, input, select, textarea{
    font-family:inherit;
    font-size: 100%;
}
/* To keep text box sizes more consistent throughout */
input, select, textarea{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    background-color: lightblue;
}
/* Puts the labels and inputs on seperate lines
label {
    display: block;
} */

/* Puts the labels beside the inputs */

h3 {
	color: blue;
	font-weight: bold;
}


label {
    width:6em;
    display: inline-block;
}

input[type="text"], input[type="email"], input[type="number"], 
input[type="select"], input[type="tel"], input[type="date"], textarea {
    width: 12em;
    padding: 5px;
    margin: 10px 10px 10px 0;
    border-radius: 5px;
    background-color: #fdedec;
    margin: .2em auto .8em auto;
}
#state { max-width: 5em;}
#zip { max-width: 5em;}
#gradyr { max-width: 5em;}
label {
    color: blue;
    font-weight: bold;
}

fieldset {
    color: rgb(19, 7, 107);
}
legend {
    margin-left: -.1em;
    font-weight: bold;
}

input:focus {
    background-color: #abebc6;
}
input:active {
    background-color: #f1948a;
}
