/* getinvolved page css */

body:before {
    height: calc(100lvh + 200px);
    background-size: auto, auto, 640px, 640px;
    background-position: center, 0% 0%, center, center;
    background-repeat: repeat, repeat, repeat, repeat;
}

#Topbar {
    background-color: rgba(0, 0, 0, 0.1);
}

#TopbarInner {
    opacity: 1;
    transform: none;
}

#JoinTheWaitListForm,
#BecomeMemberForm,
#UpgradeMemberForm {
    padding-top: 2px;
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 500ms;
}

#JoinTheWaitListForm.show,
#BecomeMemberForm.show,
#UpgradeMemberForm.show {
    opacity: 1;
    transform: none;
}

.FormTextBox {
    width: 100%;
    max-width: 400px;
}

.ForgottenPassword {
    height: 30px;
    background-color: var(--mzColorOrange);
    color: #fff;
    margin-top: 4px;
}

.ForgottenPassword>.mzButtonText {
    font-size: 13px;
}

.mzCheckBoxGroup>.mzCheckBox {
    margin-top: 12px;
}

#ErrorMembershipLevelMemberMissing,
#ErrorMembershipLevelUpgradeMissing {
    margin-top: 6px;
}

#PaymentInstructions,
#WaitingForPayOutcome {
    position: fixed;
    z-index: 2;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#PaymentInstructionsInner,
#WaitingForPayOutcomeInner {
    width: 90vw;
    max-width: 600px;
    margin: auto;
    background-color: #f9f9f9;
    border: 1px solid #aaa;
    border-radius: 8px;
    padding: 16px;
    line-height: 24px;
    box-shadow: 4px 4px 10px rgb(121 114 86);
    opacity: 0;
    transform: translateX(-50px);
    transition: transform 1500ms cubic-bezier(0.16, 1, 0.3, 1), opacity 1000ms;
}

#PaymentInstructions.show>#PaymentInstructionsInner,
#WaitingForPayOutcome.show>#WaitingForPayOutcomeInner {
    opacity: 1;
    transform: none;
}

#ReturnToDetail {
    background-color: var(--mzColorOrange);
}

#ContinueToPayMemberError {
    margin-top: 4px;
}

#AmountDue {
    font-size: var(--FontSizeLarger);
    color: var(--yfColorRed);
}

.PromptAbove.show {
    height: 24px;
}

#DiscountCode {
    max-width: 200px;
}