#formContatti{
    width: 80%;
    margin-top: 20px;
    margin-bottom: 20px;
}
input[type="text"], input[type=password], textarea {
    border-style: none;
    width: 92%;
    outline: none;
    border: none;
    background: #fff;
    border: 1px solid #DBECB5;
    padding: 14px;
    height: inherit;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #000;
}
textarea{
    resize:none;
    height: 180px;
    border: 1px solid #DBECB5;
    width: 95%;
}
input[type=text]:focus, input[type=password]:focus, textarea:focus {
    border: 1px solid #A9CF54;
}

input[type="checkbox"] {
    height: 14px;
    width: 14px;
    margin-left: 10px;
}

input[type="radio"] {
    height: 14px;
    width: 14px;
    margin-right: 10px;
}

fieldset{
    border:none;
    padding: 0;
}
#formContatti ol{
    margin: 0;
    margin-left: -10px;
    padding: 0;
    list-style: none;
}
#formContatti ol:after{
    content: '';
    display: block;
    clear: both;
}
#formContatti ol li {
    float: left;
    width: 48%;
    margin: 10px 5px;
}
#formContatti ol li:last-child {
    width: 98%;
    margin: 10px 5px;
}
#formContatti ol li label {
        display: none;
}
#formContatti legend{
    margin-bottom: 15px;
    font-size: 30px;
    /*font-weight: bold;*/
    color: #646464;
    /*text-transform: uppercase;*/
    letter-spacing: 0;
}
#send_message {
    width: 180px;
    display: block;
    padding: 8px 14px;
    color: #fff;
    background: #A9CF54;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px #A9CF54;
    border-radius: 18px;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}
#send_message:hover {
    color: #A9CF54;
    background: #fff;
}
#controllo {
    margin: 15px 0;
}

@media screen and (max-width: 768px) {
#formContatti ol li{
    float: none;
    margin: 20px 0;
    width: 100%;
}
#formContatti ol li:last-child{
    width: 100%;
     margin: 20px 0;
}
textarea{
    width: 90%;
}
input[type="checkbox"] {
        height: 14px;
        width: 14px;
        margin-left: 10px;
}
input[type="radio"] {
        height: 14px;
        width: 14px;
        margin-right: 10px;
}
#formContatti legend span{
    font-size: 20px;
}
}



@media screen and (max-width: 480px) {

}