/* Styling specific for form.html */

body{
    background-color: #1e1e1e;
    color: white;
    font-family: "Roboto", sans-serif;
    font-size: 1.6rem;
}

.wrapper-main {
    width: 800px;
    margin: 0 auto;
}

textarea, input {
    border: 2px solid #eee;
}

textarea:focus, input[type="text"]:focus {
    outline: 2px solid yellow;
}


textarea {
    width: 100%;
    height: 200px;
    resize: vertical;
}

input[type="radio"] {
    appearance: radio;
}

input[type="checkbox"] {
    appearance: checkbox;
}

select {
    border: #eee;
    width: 200px;
}

button {
    background-color: bisque;
}

button:hover {
    background-color: rgb(248, 206, 154);
    cursor: pointer;
}


input[type="text"], input[type= "email"], textarea, select, button {
    padding: 5px;
    border-radius: 5px;
}