* 
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body 
{
    color: #fff;
    font-family: "normale";
    width: 100%;
    min-height: 100vh;
    background: #ffffff;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

img 
{
    width: 300px;
    margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 100%;
    background-color: #ffffff;
}

form 
{
    width: 330px;
    height: 360px;
    background-color: #1e56a0;
    backdrop-filter: blur(7px);
    border-radius: 15px;
    border: 1px solid #ffffff83;
    box-shadow: 0 8px 32px #0000008a;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 10px;
}

form h1 
{
    margin-bottom: 10px;
}

input::placeholder 
{
    color: #ffffffb9;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
}

#login 
{
    font-family: "normale";
    outline: none;
    border: none;
    font-size: 0.8rem;
    padding: 10px 95px;
    border-radius: 15px;
    margin: 15px 0px;
    margin-top: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#login:hover {
    background-color: #64ca2d;
    transform: scale(1.03);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    color: white;
}


form input[type="text"], form input[type="password"] 
{
    width: 250px;
    height: 40px;
    outline: none;
    background-color: transparent;
    border: 1px solid #ffffffac;
    border-radius: 15px;
    margin-top: 20px;
    padding: 10px;
    color: white;
}

.bottoneIndietro
{
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background-color: #495057;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    font-family: "normale";

    animation: slideInFromLeft 0.5s ease-out;
}

.bottoneIndietro:hover
{
    background-color: #1e1f20;
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

    .password-wrapper {
        position: relative;
        display: inline-block;
    }

    .toggle-eye {
        position: absolute;
        right: 10px;
        top: 65%;
        width: 24px;
        height: 24px;
        cursor: pointer;
        transform: translateY(-50%);
        color: #ffffffb9;
    }



