/*small devices*/
@media (min-width: 0px){
    html{
        overflow: hidden;
    }
    body{
        height: 100%;
    }
    .contenitore-form-accesso-con-img{
        width: 90%;
    }
}
/*medium devices*/
@media (min-width: 768px){
    html{
        overflow: hidden;
    }
    body{
        height: 100%;
    }
    .contenitore-form-accesso-con-img{
        width: 80%;
    }
}
/*large devices*/
@media (min-width: 992px){
    .contenitore-form-accesso-con-img{
        width: 40%;
    }
}
/*extra large devices*/
@media (min-width: 1200px){
    .contenitore-form-accesso-con-img{
        width: 20%;
    }
}


body{
    font-size: 18px;
}

.contenitore-form-accesso-con-img {
    background-color: rgb(250, 250, 250);
    border-radius: 20px;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    box-shadow: 0px 0px 40px 5px rgba(0, 0, 0, 0.384);
    color: #333;
}


#logo-csc {
    width: 40%;
    height: auto;
}

.form-input{
    width: 80%;
    border-radius: 5px;
    border-width: 1px;
    outline: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    padding: 3px;
}

.etichette{
    margin: auto;
    width: 80%;
    text-align: left;
    margin-top: 0;
    margin-bottom: 3px;
}

#bottone-accedi{
    margin-top: 5px;
    font-size: 16px;
    font-weight: initial;
}

.password-container{
  position: relative;
}
/* .password-container input[type="password"],
.password-container input[type="text"]{
  width: 100%;
  padding: 12px 36px 12px 12px;
  box-sizing: border-box;
} */
.fa-eye{
  position: absolute;
  top: 50%;
  right: 9%;
  cursor: pointer;
  font-size: 90%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  /* color: lightgray; */
}

.errore_accesso{
    font-size: 0.9rem;
    background-color: #e2e2e2;
    border-radius: 3px;
    color: #bf2226;
    width: 80%;
    margin: auto;
}
