@import url("gordita/fonts.css");

* {
    padding: 0;
    margin: 0;
}

body {
    font-family: gordita, "sans-serif";
    overflow-x: hidden;
}

.page-container {
    width: 100%;
    height: 100vh;
    display: flex;
    position: relative;
}

.background {
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 1;
    position: absolute;
}

.color-block {
    width: 50%;
    height: 100%;
}

.gray {
    background: #F3F3F3;
}

.content {
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.main {
    width: 100%;
    display: flex;
}

.left-side {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
}

.right-side {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.page-form {
    padding-bottom: 100px;
}

.left-side-header {
    height: 64px;
    width: 100%;
    display: flex;
    align-items: center;
}

.left-side-header div {
    margin-left: 13%;
}

.left-side-main {
    width: 77%;
    margin-right: 7%;
}

.left-side-main p {
    line-height: 26px;
}

.right-side-main {
    width: 75%;
    margin-left: 7%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.left-side-main h3 {
    padding-bottom: 22px;
}

.president-row {
    display: flex;
    padding: 16px 0;
    align-items: center;
}

.checkbox-row {
    display: flex;
    padding-top: 16px;
}

.checkbox-row img {
    margin-right: 8px;
}

.left-side-footer {
    height: 96px;
}

.restore-page-footer {
    height: 96px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center {
    text-align: center;
}

.pb-24 {
    padding-bottom: 24px;
}

.pt-24 {
    padding-top: 24px;
}

.hidden {
    display: none;
}

.footer-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.footer-nav-link {
    color: #707070;
    font-weight: 400;
    font-size: 12px;
    line-height: 21px;
    text-decoration: none;
}

.footer-copyright {
    font-size: 12px;
    line-height: 18px;
    color: #707070;
}

.logo {
    margin-left: 12rem;
}

.logo img {
    height: 28px;
}

.email-input {
    width: 100%;
    max-width: 555px;
    height: 40px;
    margin-top: 36px;
    padding-left: 12px;
    border-radius: 8px;
    border: 1px solid #D8D8D8;
    outline: #D8D8D8;
    font-size: 16px;
    box-sizing: border-box;
}

.mt-16 {
    margin-top: 16px;
}

.send-email-button {
    margin-top: 26px;
    width: 100%;
    max-width: 555px;
    height: 50px;
    border-radius: 32px;
    border: none;
    background: #FF8600;
    font-size: 18px;
    cursor: pointer;
}

.magic-link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 26px;
    width: 100%;
    max-width: 555px;
    height: 50px;
    border: 1px solid #595959;
    border-radius: 32px;
    font-size: 18px;
    cursor: pointer;
}

.magic-link-button a {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 4px;
    color: #595959;
    text-decoration: none;
}

.images-block {
    width: 100%;
    max-width: 555px;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
}

.images-block img {
    height: 38px;
}

.error {
    background: #dd0c1640;
}

.forgot-password-link {
    text-decoration: none;
    color: #2671c2;
    cursor: pointer;
}

.forgot-password-link:hover {
    color: #578df3;
    text-decoration: underline;
}

.g-recaptcha {
    margin-top: 24px;
}

@media (max-width: 1100px) {
    body {
        width: 100vw;
    }

    .main {
        flex-direction: column;
    }

    .left-side-header {
        padding: 15px 0;
        background: #F3F3F3;
    }

    .left-side {
        background: #F3F3F3;
    }

    .background {
        display: none;
    }

    .page-container {
        flex-direction: column;
    }

    .left-side,
    .right-side {
        width: 100%;
    }

    .images-block img {
        width: 50%;
    }

    .left-side-footer {
        display: none;
    }

    .left-side-main {
        width: 100%;
        margin: 0;
        padding: 0 24px 24px 24px;
        box-sizing: border-box;
    }

    .right-side {
        align-items: center;
        padding: 24px;
        box-sizing: border-box;
    }

    .right-side-main {
        width: 100%;
        margin: 0;
    }

    .email-input,
    .send-email-button,
    .magic-link-button {
        width: 100%;
    }

    .left-side-main h3 {
        text-align: center;
    }

    .images-block {
        width: 100%;
        margin: 0;
        flex-wrap: wrap;
        padding-top: 24px;
    }

    .images-block img {
        width: 50%;
    }

    .footer-container {
        flex-direction: column;
        gap: 1rem;
        padding: 24px 0;
    }

    .footer-container img {
        display: none;
    }
}
