.account_pages {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-label {
    display: none;
}

#hint_id_password1 {
    display:none;
}

.signup-form {
    width: 50%;
}

.top-bottom-spacer {
    padding: 3rem;
}

@media only screen and (max-width: 786px) {
    .signup-form {
        width: 75%;
    }

    .account_pages {
        min-height: 100vh;
    }

    .top-bottom-spacer {
        padding: 3rem 1rem;
      }
}