.login-form {
    margin-top: 100px;
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
    color: var(--golden);
    align-items: center;
}

.login-form a {
    text-decoration: none;
    color: var(--golden);
    font-weight: bold;
}

.login-form div {
    position: relative;
    margin-top: 20px;
}

.input-label input{
    min-width: 345px;
    height: 26px;
    border: solid 1px var(--main_red);
    background-color: #fff;
    padding: 3px;
    position: relative;
}

.input-label span{
    position: absolute;
    left: -120px;
    top: 8px;
    color: #444;
    padding-right: 20px;
}

.login-buttons {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.login-buttons button{
    transition: 0.15s ease;
    font-size: 0.75em;
    color: #fff;
    width: 47.5%;
    border-radius: 5px;
    border: none;
    font-weight: bold;
    background-color: var(--golden);
    padding: 6px;
}

.login-buttons button:hover {
    box-shadow: 0 0 5px rgba(33, 33, 33, 0.5);
    cursor: pointer;
    transform: scale(1.05);
}

.ricordami-checkbox {
    display:flex;
    justify-content: left;
    align-items: center;
    font-weight: bold;
}

input[type='checkbox'] {
    height: 20px;
    width: 20px;
}

input[type='checkbox']:hover {
    cursor: pointer;
}

#show-password {
    position: absolute;
    z-index: 20;
    top: -21px;
    /* left: 0; */
    right: 3px;
    font-size: 1.5rem;
    color: #777;
    cursor: pointer;
}

#show-password:hover{
    color: #333;
}

.strikethrough {
    position: relative;
    color: darkgray;
    width: fit-content;
}

.strikethrough:before {
    position: absolute;
    content: "";
    left: 0px;
    top: 54%;
    right: 0;
    border-top: 1px solid;
    border-color: #333;

    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    transform: rotate(20deg);
}

@media screen and (max-width: 1001px) {
    div.width-container.bread-crumb-container {
        display: none;
    }

    .footer_wrapper {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    #show-password {
        top: 10px
    }
}

@media screen and (max-width: 426px) {

    #show-password {
        top: 0px
    }
}