input[type=text] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
}
textarea {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
}
select {
width: 100%;
padding: 25px 20px;
font-size: 18px;
border: 1px solid #B2B2B2;
border-radius: 0;
background-color: #f1f1f1;
}
input[type=button], input[type=submit], input[type=reset] {
background-color: #EC6608;
border: none;
color: white;
padding: 16px 32px;
text-decoration: none;
font-size: 18px;
margin: 4px 2px;
cursor: pointer;
}  .customcontainer {
display: block;
position: relative;
padding-left: 35px;
margin-bottom: 0;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
} .customcontainer input {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
} .checkmark {
position: absolute;
top: 0;
left: 0;
height: 25px;
width: 25px;
background-color: #eee;
border: 1px solid #B2B2B2;
} .customcontainer:hover input ~ .checkmark {
background-color: #ccc;
} .customcontainer input:checked ~ .checkmark {
background-color: #EC6608;
} .checkmark:after {
content: "";
position: absolute;
display: none;
} .customcontainer input:checked ~ .checkmark:after {
display: block;
} .customcontainer .checkmark:after {
left: 9px;
top: 5px;
width: 5px;
height: 10px;
border: solid white;
border-width: 0 3px 3px 0;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}