.general-content {
    margin-top: 120px;
    height: calc(100vh - 120px);
}

.my-100-h {
    height: 100%;
    display: flex;
    align-items: center;
}
/* register and login form styles */
.account-form-wrapper {
    margin: 0 auto;
    width: fit-content;
    background: var(--high-blue);
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 30px;
}

    .account-form-wrapper h1 {
        margin-bottom: 25px;
        text-align: center;
        font-size: 26px;
    }

.account-form-submit {
    background: var(--mid-blue);
    color: var(--white);
    border: none;
    width: 100%;
    display: block;
    padding: 6px;
    border-radius: 5px;
}

.account-form-link {
    display: block;
    width: 100%;
}

.custom-input-wrapper {
    position: relative;
}

    .custom-input-wrapper .show-password {
        position: absolute;
        top: 50%;
        right: 5px;
        transform: translateY(-50%);
        color: var(--light-blue);
        background: transparent;
        border: none;
        outline: none;
    }
