form{
	width: 100%;
	max-width: 450px;
	float: right;
	background: #ffffff;
	box-sizing: border-box;
	padding: 30px;
}
input,
select{
	width: 100%;
    box-sizing: border-box;
    padding: 0.3rem 0.5rem;
    font-size: 14px;
    height: 39px;
    background: #ffffff;
    border: 1px solid #cccccc;
    color: #777777;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    -moz-appearance:none;
    -webkit-appearance:none;
    appearance:none;
}
select{
	background-image: url('../images/arrow-select.png');
	background-repeat: no-repeat;
    background-position: right;
}
.sepa{
	margin-bottom: 15px; 
}
.label_privacy{
	font-size: 10px;
    display: inline-block;
}
input.input_checkbox {
    width: 15px;
    margin-top: 4px;
    height: 15px;
    float: left;
    margin-right: 6px;
    -moz-appearance:checkbox;
    -webkit-appearance:checkbox;
    appearance:checkbox;
}
input.input_form.input_radio {
    width: 15px;
    margin-top: 4px;
    height: 15px;
	margin-right: 2px;
    margin-left: 8px;
    -moz-appearance:radio;
    -webkit-appearance:radio;
    appearance:radio;
}
.label_text.label_radio1{
	color: #777777;
	font-size: 14px;
}
.sepa.sepa-radio-1{
	font-size: 14px;
	color: #777777;
}
.dati-obbligatori{
	float: right;
    font-size: 10px;
    margin: 7px 0 0;
}
.input_submit{
	border: none;
	background: #ff5c26;
	color: #ffffff;
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
	height: 60px;
	font-size: 16px;
	letter-spacing: 1px;
	transform: scale(1);
	transition: all 0.2s ease;
	cursor: pointer;
    width: 100%;
}
.input_submit:hover{
	transform: scale(1.05);
	background: #ff6d3c;
	box-shadow: 0 2px 20px rgba(100,100,100,0.2);
}
input:focus,
select:focus,
.input_submit:focus{
	outline: none;
}

