section.auth {
    min-height: calc(100vh - 60px); /*total_height - margin_top)*/
    width: 100%;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f2f1ef;
}
section.auth div.child {
    width: calc(500px - 50px);
    height: auto;
    background-color: #fff;
    border-radius: 27px;
    padding: 25px;
    h2 {
        font-size: 18px;
        font-weight: 400;
        color: #353535;
        margin-top: 10px;
    }
}

section.auth div.form {
    margin-top: 20px;
}
section.auth div.form button.submit {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 10px 0;
    border: 0;
    outline: none;
    margin-top: 14px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    background-color: #5F17C5;
    color: #fff;
    opacity: 0.7;
}
section.auth div.form button.submit.active:not(.processing) {
    opacity: 1;
    cursor: pointer;
}
input[name="password"] {
    padding-right: calc(50px + 5px + 10px) !important;
}
button#toggle-password {
    position: absolute;
    border: 0;
    outline: none;
    right: 5px;
    top: 5px;
    height: 33px;
    font-size: 15px;
    width: 50px;
    border-radius: 7px;
    font-weight: 500;
    background-color: transparent;
}
button#toggle-password:not([data-visible="hidden"]) {
    display: block;
}