#formContatti{
    margin-top: 10px;
    margin-bottom: 10px;
}

textarea {
    color: #666;
    background: #FAFAFA;
    border-style: none;
    height: 200px;
    width: 340px;
    padding: 8px;
    border: 1px solid #ddd;
    outline: none;
    resize:none;
}

input[type="text"], input[type=password] {
    color: #666;
    background: #FAFAFA;
    border-style: none;
    width: 340px;
    padding: 8px;
    border: 1px solid #ddd;
    outline: none;
}

input[type=text]:focus, input[type=password]:focus, textarea:focus {
    border: 1px solid #ccc;
    box-shadow: inset 0 0 1px 1px #D5F0F7;
}

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;
    margin: 0;
}
#formContatti ol {
    padding: 0;
}
#formContatti ol li {
    display: table;
    margin: 15px 0;
}
#formContatti ol li label {
        display: table-cell;
        width: 110px;
        vertical-align: top;
}
#formContatti ol li input {
        display: table-cell;
}
#formContatti legend span {
    font-size: 24px;
    margin: 20px 0;
}
#send_message {
    font-size: 16px;
    display: block;
    padding: 5px 20px;
    background: #666;
    border: 1px solid #555;
    color: #FFF;
    margin-left: 3px;
    cursor: pointer;
    -webkit-transition:all ease .3s;
    -moz-transition:all ease .3s;
    -o-transition:all ease .3s;
    transition:all ease .3s;
}

#send_message:hover {
    background: #444;
}

#controllo {
    margin-bottom: 0 0 15px 0;
}

@media screen and (max-width: 640px) {
#formContatti ol li{
    width: 100%;
  }
input[type="checkbox"] {
        height: 14px;
        width: 14px;
        margin-left: 10px;
}
input[type="radio"] {
        height: 14px;
        width: 14px;
        margin-right: 10px;
}
textarea {
    width: 92%;
}

input[type="text"], input[type=password] {
    width: 92%;
}
}



@media screen and (max-width: 480px) {
    input[type="text"], input[type=password], textarea {
        width: 85%;
    }
  
    #formContatti ol {
        padding-left: 5%;
    }
    #formContatti ol li {
        display: block;
    }

    #formContatti ol li label {
        margin: 3px 0;
        display: block;
    }

    #formContatti ol li input {
        margin: 3px 0;
        display: block;
    }

}