form {
    width: 50%;
    padding: 10px;
    margin: 5px;
    border: 2px solid black;
    border-radius: 10px;
    background-color: #eee;
}
fieldset {
    border-radius: 10px;
    border-color: gold; 
}
input{
    width: 95%;
    padding: 10px;
    margin: 10px 5px;
    border: 1px solid black;
    border-radius: 5px;
    font-family: helvetica;
    color: black;
    background-color: lightgray;
}
input:hover {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.94);
}
input:focus {
    background-color: tan;
}
textarea {
    width: 95%;
    height: 100px;
    padding: 10px;
    margin: 10px 5px;
    border-radius: 5px;
    resize: none;
    font-family: helvetica;
    color: black;
    background-color: lightgray;
}
textarea:hover {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.94);
}
textarea:focus {
    background-color: tan;
}
label {
    width: 15px;
    height: 15px;
    margin: 10px 5px;
    font-weight: bold;
}
input[type="radio"] {
    width: 15px;
    height: 15px;
    margin: 10px 5px;
    cursor: pointer;
}
input[type="checkbox"] {
    width: 15px;
    height: 15px;
    margin: 10px 5px;
    cursor: pointer;
}
select {
    width: 98%;
    padding: 10px;
    margin: 10px 5px;
    border-radius: 5px;
    color: black;
    background-color: lightgray;
}
select[multiple] {
    height: 85px;
}
select:hover {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.94);
}
option {
    margin-top: 5px;
}
option:hover {
    color: white;
    background-color: gray;
}
input[type="submit"],
input[type="reset"],
input[type="button"] {
    width: 180px;
    padding: 20px;
    margin: 20px 20px; 
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    font-family: "Courier New", Courier, monospace;
    text-align: center;
    color: white;
    background-color: #333;
    cursor: pointer;
}
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
    background-color: black;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.94);
}