*{
    margin:0px;
    box-sizing: border-box;
    padding:0px;
}
body{
    background-color: black;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.wrapper{
    margin-top: 185px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
h1{
    text-align: center;
    color:white;
    font-weight: 100;
    font-size: 22px;
    font-family: 'Inter',sans-serif;
    margin-bottom: 24px;
}
.bottone-login{
    color:black;
    font-weight: bold;
    font-family: 'Inter',sans-serif;
    text-align: center;
    line-height: 50px;
    width:228px;
    height:50px;
    background-color: white;
    border-radius: 15px;

}
.subtitle{
    text-align: center;
    font-size: 10px;
    color:white;
    font-family: 'Inter', sans-serif;
    margin-bottom: 18px;
}
.email{
    color:white;
    background-color:#1E1F1D;
}
.password{
    color:white;
    margin-top: 16px;
    background-color:#1E1F1D;
    border-radius: 16px;
    margin-bottom: 12px;
}
input:focus{
    outline: none;       /* Rimuove il bordo blu tipico del focus */
    box-shadow: none;    /* Rimuove eventuali ombre */
    border: none;    
}
#password-input, #username-input{
    cursor:pointer;
    border-radius: 16px;
    border: none;
    color:white;
    background-color:#1E1F1D;
    border-radius: 16px;
    padding-left: 16px;
    font-size: 16px;
    width:338px;
    height:56px;
}
form{
    width:338px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#submit-input{
    font-weight: bold;
    font-size: 16px;
    font-family: 'Inter',sans-serif;
    border:none;
    color:black;
    background-color: #DDDDDD;
    width:228px;
    height:50px;
    border-radius: 15px;
}
.reminder{
    position: absolute;
    bottom: 28px;
    color:white;
    font-size:8px;
    text-align: center;
    font-family: 'Inter',sans-serif;
    font-weight: bold;
}
.nonvalide-text{
    margin-bottom: 12px;
    color:red;
    font-weight: bold;
    font-family: 'Inter',sans-serif;
}