body.page-login{
    background-color: var(--color-lightgreen);
    display: flex;
    padding-top: 0;
    padding-bottom: 50px;
}

body.page-login .logo{
    width: 80px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

body.page-login .card-login{
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 35px;
    max-width: 500px;
}

body.page-login .logo-cliente{
    width: 140px;
    height: auto;
    margin: 0 auto;
    padding-bottom: 30px;
}

body.page-login .logo-cliente{
    width: 140px;
    height: auto;
    margin: 0 auto;
    padding-bottom: 30px;
}

input[type=text]{
    height: 40px;
    border: 2px solid #E0E0E0 !important;
}

input[type=password]{
    height: 40px;
    border: 2px solid #E0E0E0 !important;
}

form{
    text-align: left;
    padding-top: 10px;
    border-top: 1px solid #E0E0E0;
}

.btn-login{
    width: 100%;
    height: 40px;
}

.resp.error{
    color: red;
    margin-top: 20px;
}

.btn-auth0 {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 30px;
    min-height: 30px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0.5;
    transition: opacity 0.2s;
    font-size: 0;   /* nasconde il testo "L" */
    background: transparent url('key.svg') no-repeat center center;
    background-size: 30px;
}


.btn-auth0:active{
    border-width: 0px !important;
}

.btn-auth0:hover {
    opacity: 1;
}

input[type=text]:focus, input[type=password]:focus{
    appearance: none !;
    outline: none !important;
}