/* Body login */

#body_login {
    height: 100vh;
}

#contenitore_login {
    height: 550px;
    color: #fff ;
}

#form_login {
    font-weight: 500;
    width: 20vw;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-direction: column;
    justify-content: space-evenly;
    padding: 104px 0 180px 0;
}

#form_login .nome_email {
    margin: 25px 0;
}
#form_login input[type="email"],
#form_login input[type="password"] {
    height: 45px;
}

#resta_connesso {
    width: auto;
    margin-right: 10px;
}

#submit_login input {
    border-radius: 50px;
    width: 250px;
    display: block;
    margin: 25px auto;
}

#form_login a {
    text-align: center;
    font-size: 12px;
    text-decoration: none;
    color: #78797a;
}

#form_login a:hover {
    text-decoration: underline;
}

input, textarea {
    border-radius: 5px;
    width: 100%;
    padding: 5px;
    margin-bottom: 15px;
    border: 1px solid #cccc;
}

input[type=submit] {
    font-weight: 600;
    color: #fff;
    background-color: hsla(227, 96%, 51%, 0.4);
    padding: 0;
    height: 40px;
}
