form{
    display: block;
    width: 90%;
    margin: 10px auto;
    text-align: center;
    z-index: 100;
}
input, textarea, select{
	padding: 0.5rem;
    display: block;
	color: #000;
    font-size: 1em;
    border-radius: 0;
    margin: 10px auto;
    border: 2px solid #272727;
    width: 90%;
    font-weight: 400;
    font-family: "Century Gothic";
}
select{
    width: 95%;
}
input[type=submit]{
    display: inline-block;
    margin: 10px;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 1.2em;
    letter-spacing: 0.2em;
    text-align: center;
    width: auto;
    background: #c74f00;
    background: linear-gradient(45deg, #c74f00, #f6a406);
    padding: 10px 40px;
    height: auto;
    border-radius: 30PX;
}
input[type=submit]:hover{
    background: linear-gradient(45deg, #f6a406, #c74f00);
}
input[type="checkbox"] + label {
    display: block;
    margin: 0.2em;
    cursor: pointer;
    padding: 0.2em;
    font-family: 'Montserrat', sans-serif;
    font-variant: regular;
    font-weight: 500;
    cursor: pointer;
}
  
input[type="checkbox"] {
    display: none;
}
  
input[type="checkbox"] + label:before {
    content: "\2714";
    text-align: left;
    border: 0.1em solid #000;
    border-radius: 0.2em;
    display: inline-block;
    width: 1em;
    height: 1em;
    padding-left: 0.2em;
    padding-bottom: 0.3em;
    margin-right: 0.2em;
    vertical-align: bottom;
    color: transparent;
    transition: 0.2s;
}
  
input[type="checkbox"] + label:active:before {
    transform: scale(0);
}
  
input[type="checkbox"]:checked + label:before {
    background: #f37f50;
    border-color: #fff;
    color: #fff;
}