body{
    margin: 0;
    /*background-color: rgba(194, 39, 63, 0.08);*/
    background-color: #f8f9fa;
    font-family: 'Roboto', sans-serif;
    color: #475569;
}

nav img{
    display: block;
    padding: 10px;
    width: 180px;
    height: auto;
}

nav{
    display: flex;
    justify-content: center;
    background-color: white;
}

#container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#login {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: auto;
    margin-top: 50px;
}

form{
    padding: 50px;
    width: 100%;
    height: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
}

#button{
    margin-top: 35px;
    /*background-color: #c2273f;*/
    /*background-color: #708EC0;*/
    background-color: #E6808B;
    border: none;
    border-radius: 20px;
    padding: 10px;
    color: white;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    margin-bottom: 45px;
    width: 100%;
}

#button:hover{
    /*background-color: #da3c54;*/
    /*background-color: #88aeef;*/
    background-color: #F4C0C4;
}

.textareastyle {
    width: 300px;
    border: 0;
    border-radius: 20px;
    padding: 20px;
    margin-top: 15px;
    outline: 0;
    border: 1px solid gray;
}

.hidden{
    display:none;
}

.info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: rgb(175, 170, 170);
}



/*Stile della funzione captcha*/
#captcha{
    margin-top: 45px;
    margin-bottom: 20px;
}

#captcha .preview{
    color: #555;
    width: 100%;
    text-align: center;
    height: 40px;
    line-height: 40px;
    letter-spacing: 8px;
    border: 1px dashed #888;
    border-radius: 0.5em;
    margin-bottom: 10px;

}

#captcha .preview span{
    display: inline-block;
    user-select: none;
}

#captcha .captcha_form{
    display: flex;
}

#captcha .captcha_form input{
    width: 100%;
    border-radius: 0.5em;
    outline: none; 
    padding: 1em;
    z-index: 1;
    background: none;
}


#captcha .captcha_form .captcha_refersh{
    width: 60px;
    border: none;
    outline: none;
    /*background: #da3c54;*/
    /*background: #708EC0;*/
    background-color: #E6808B;
    color: #eee;
    cursor: pointer;
    border-radius: 20px;
    margin-left: 5px;
    margin-top: 15px;

    display: flex;
    justify-content: center;
    align-items: center; 
}

#captcha_form{
    background-color: white !important;
    border-radius: 20px !important;
}

.captcha_refersh{
    transition: .4s;

}

.captcha_refersh:hover{
    transition: .4s;

    transform: scale(0.90);
}

