  /* Forms */
form {width: 100%; background: #5a0a1b; padding: 30px; border-radius: 25px;}
input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="date"],
input[type="number"],
input[type="reset"],
input[type="button"],
input[type="submit"],
textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="date"],
input[type="number"],
textarea {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 10px;
	border: 1px solid rgba(0, 0, 0, 0.05);
	width: 100%;
	background-color: #f9f9f9;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
}
input:focus,
textarea:focus {
	border-color: rgba(0, 0, 0, 0.15);
}
input[type="reset"], 
input[type="button"], 
input[type="submit"] {
   border: 1px solid #fedb75;
    border-radius: 15px;
   color: #fff;  
	display: inline-block;
   height: 40px;
   width: inherit;
   margin-bottom: 30px;
   padding: 0px 25px;
	cursor: pointer;
	margin-top: 5px;
	background: #fdcf00;
	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
	-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);	
}
input[type="reset"]:hover, 
input[type="button"]:hover, 
input[type="submit"]:hover {
	background: -webkit-linear-gradient(#fdcf00, #fedb75);
	background: -moz-linear-gradient(#fdcf00, #fedb75);
	background: -ms-linear-gradient(#fdcf00, #fedb75);
	background: -o-linear-gradient(#fdcf00, #fedb75);
	background: -webkit-gradient(#fdcf00, #fedb75);
	background: linear-gradient(#fdcf00, #fedb75);
}
input[type="reset"]:active, 
input[type="button"]:active, 
input[type="submit"]:active {
	-webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
	box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);	
}
select {
	padding: 10px;
	border: 1px solid rgba(0, 0, 0, 0.05);
	background-color: #f9f9f9;
}
input[type="radio"],
input[type="checkbox"],
input[type="file"] {
	
	border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 5px;
}
input[type="file"] {
	cursor: pointer;
}
