/* required */
.required:not(span){
    border: 2px solid red !important;
    box-shadow: 0 0 5px rgb(255, 0, 0) !important;
}
span.required{
    color: red !important;
}
/* input*/
.form_field_container{
    margin-bottom: 30px;
}
.form_field_container input.form_input,
.dataTables_filter input,
.dataTables_length select{
    font-family: "Montserrat";
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0;
    border-radius: 10px !important;
    padding: 21px 20px !important;
    background-color: transparent;
    background: rgb(213,209,209);
    background: -moz-linear-gradient(180deg, rgba(213,209,209,1) 0%, rgba(244,244,244,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(213,209,209,1) 0%, rgba(244,244,244,1) 100%);
    background: linear-gradient(180deg, rgba(213,209,209,1) 0%, rgba(244,244,244,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d5d1d1",endColorstr="#f4f4f4",GradientType=1);
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    position: relative;
}

.form_field_container input.form_input[type='file']{
    width: 100%;
}

input[type="text"]::-webkit-input-placeholder {
    color: #575756 !important;
    opacity: 1 !important;
}
input[type="text"]::-moz-placeholder {
    color: #575756 !important;
    opacity: 1 !important;
}
input[type="text"]:-ms-input-placeholder {
    color: #575756 !important;
    opacity: 1 !important;
}
input[type="text"]:-moz-placeholder {
    color: #575756 !important;
    opacity: 1 !important;
}
.password_container{
    position: relative;
}
input[type='password']{
    padding-right: 40px;
}
.togglePassword{
    height: 18px;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 31px;
    transform: translate(0,-50%);
    display: block;
    background-image: url(../images/show_psw.png);
    background-size: cover;
    width: 34px;
}
.form_field_container label,
.nome_profilo{
    display: block;
    font-family: "Montserrat";
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    color: #fff;
    margin-bottom: 20px;
}
.form_field_container label.label_for_radio{
    position: relative;
    display: inline-block;
    top: 3px;
    cursor: pointer;
    margin-bottom: 11px;
}
.valore_profilo{
    font-family: "Montserrat";
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    color: #fff;
    font-weight: 700;
}
body .has_required .required{
    border: 2px solid red !important;
    box-shadow: 0 0 5px rgb(255, 0, 0) !important;
}