section.auth {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
section.auth div.child {
    border: 1px dashed var(--secondary-color-30);
    width: calc(500px - 50px);
    height: auto;
    background-color: #fff;
    border-radius: 27px;
    padding: 25px;
    & h1 {
        margin-top: 14px;
    }
    & h2 {
        font-size: 16px;
        font-weight: 400;
        color: #272727;
        margin-top: 4px;
    }
    & a.brand-logo svg {
        height: 32px;
        width: auto;
        display: flex;
    }
}

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: var(--primary-color);
    color: #fff;
    opacity: 0.8;
}
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;
    &:not([data-visible="hidden"]) {
        display: block;
    }
}