html,
body {
    height: 100%;
}

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

.container {
    display: flex;
    flex-direction: column;
    min-height: calc(100% - 60px);
    justify-content: space-evenly;
    padding: 20px 15px;
}

.box-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* aggiunto */
.title {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.title div {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 44px;
    text-align: center;
    color: #000000;
}

.subtitle {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 145%;
    text-align: center;
    color: #050505;
}

.box {
    padding: 0 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.box .input-field {
    /* width: min(80%, 355px); */
    width: min(100%, 355px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.box .input-field label {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    color: #000000;
}

/* aggiunto */
.box .input-field input {
    border: none;
    border-bottom: 2px solid #D1D1D4;
    background: none;
    padding: 10px 0 5px 0;
    width: 100%;
    transition: .2s;
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
}

.box .input-field input:active:enabled,
.box .input-field input:focus:enabled,
.box .input-field input:hover:enabled {
    outline: none;
    border-bottom-color: #004C99;
}

.box .input-field span.iconEye {
    margin-top: -25px;
    margin-left: auto;
    cursor: pointer;
    user-select: none;
}

.box .input-field a {
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    padding: 5px 0;
    /* text-align: end; */
    width: max-content;
    align-self: flex-end;
}

.box .input-field a:active {
    color: #4a39da;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.button input[type="submit"] {
    width: 168px;
    height: 45px;
    background: #004C99;
    font-family: 'Raleway';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #FFFFFF;
    border: 0;
    cursor: pointer;
    transition: .2s;
}

.button input[type="submit"]:hover:enabled {
    background: #003366;
}

*:disabled {
    opacity: 0.5;
    cursor: not-allowed !important; /* per sovrascrivere il cursore di button*/
}

@media screen and (max-width: 375px) {
    .title div {
        font-size: 24px;
        line-height: 145%;
    }

    .subtitle {
        font-size: 14px;
        line-height: 145%;
        font-weight: 400;
    }
    .button button {
        width: 100%;
    }
}