.site-main {
    position: relative;
    height: 100%;
    width: 100%;
    margin-bottom: auto;
}
.parther-check-wrapper {
    height: 800px;
    width: 100%;
    background-color: var(--darkblue);
    color: var(--white);
}
.parther-check-wrapper a {
    color: var(--lightblue);
    text-decoration: underline;
}
.parther-check-wrapper a:hover {
    color: var(--orange);
}

.boxed-content {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}
.boxed-content h1{
    color: var(--white);
    font-size: 60px;
    margin: 18px 0 48px;
}

.buttons-flex {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 24px;
}
.buttons-flex .button {
    padding: 12px;
    text-align: center;
    width: 150px;
    color: var(--white);
    background-color: var(--lightblue);
    font-weight: 500;
    border-radius: 36px;
    cursor: pointer;
    transition: all .3s ease-in;
}
.buttons-flex .button:hover {
    background-color: var(--orange);
}
.buttons-flex .button-no {text-decoration: none;}
.buttons-flex .button-no:hover{color: var(--white);}
.apply-for-resources {
    height: auto;
    padding: 100px 0;
    min-height: 800px;
}
.apply-for-resources .wpforms-confirmation-container {
    padding: 15px 30px 0;
    text-align: center;
    border: 1px solid var(--white);
    background: #3ebfc58f;
    border-radius: 4px;
}
.thank-you .boxed-content,
.apply-for-resources .boxed-content {display: flex;}
.thank-you .boxed-content .buttons-flex{margin-top: 32px;}
.boxed-content input {
    width: 400px;
    max-width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--graybg);
    background-color: transparent;
    border-radius: 8px;
    outline: none;
    color: var(--white);
    margin-bottom: 24px;
}
.email-error {
    display: none;
    color: var(--orange-hover);
    text-align: center;
    margin-bottom: 18px;
}
.pending-review,
.success-email-check,
.already-registered {
    max-height: 0;
    overflow: hidden;
    transition: all .4s ease-in;
}
.pending-review div{
    border: 1px solid gray;
    border-radius: 4px;
    padding: 10px;
}
.pending-review,
.success-email-check div,
.already-registered {
    margin-bottom: 24px;
}
.email-check-note {
    font-size: 18px;
}
.partner-registered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--white);
    background-color: var(--darkblue);
}
.partner-registered h1 {
    font-size: 60px;
    text-align: center;
    color: var(--white);
    margin-bottom: 24px;
}
.partner-registered ul {
    padding-left: 20px;
    margin-bottom: 48px;
}
.partner-registered ul li::marker{
    color: var(--orange);
}
.partner-registered ul li a{
    color: var(--orange);
}
.partner-registered ul li a:hover{
    color: var(--orange);
    text-decoration: underline;
}
@media (max-width: 992px) {
    .not-partner-box {flex-direction: column;}
    .not-partner-text {width: 100%; text-align: center; padding: 0 15px;}
    .not-partner-form-wrap {width: 100%; padding: 0;}
}