.form-contatti .form-group {
    margin-bottom: 5px;
}

.form-contatti input,
.form-contatti .btn,
.form-contatti textarea {
    background: #F3F4F5;
    color: #C9C9C9;
    border: none;
    border-radius: 0;
    font-size: 0.9em;
    padding: 15px;
    font-weight: 300;
    box-shadow: none;
    resize: none;
    width: 100%;
    border: none;
    height: auto;
}
.form-contatti *::placeholder {
    color: #C9C9C9;
}
.form-contatti .field:nth-child(even) input {
    width: 98%;
    margin-left: auto;
}

/* Button */
div.ccm-page .form-contatti .btn {
    color: white;
    background: var(--blue);
    border: 1px solid var(--blue);
    width: auto;
    font-size: 1.2em;
    padding: 12px 45px;
    transition: all 0.3s ease-in-out;
    border-radius: 0;
}
div.ccm-page .form-contatti .btn:hover,
div.ccm-page .form-contatti .btn:focus,
div.ccm-page .form-contatti .btn:active {
    color: var(--blue);
    background: white;
}

/* Checkbox */
.form-contatti .checkbox input {
    width: auto;
}
.form-contatti .checkbox span,
.form-contatti .checkbox a {
    color: #C9C9C9 !important;
}
.form-contatti .checkbox a:hover,
.form-contatti .checkbox a:focus,
.form-contatti .checkbox a:active {
    text-decoration: underline !important;
}

@media screen and (max-width:568px) {
    .form-contatti .field:nth-child(even) input {
        width: 100%;
    }    
    .form-contatti .btn {
        margin: 0 auto;
        width: 60%;
        display: block;
        order: 2;
    }
    .form-contatti .checkbox {
        text-align: center;
        margin-bottom: 15px;
    }
    .form-contatti .form-actions {
        display: flex;
        flex-direction: column;
    }
}