:root {
    --mobile-bg-nudge: 0%;
}
html,
body {
    height: 100%;
    margin: 0;
    background-color: #524456;
    background-image: url('./../assets/beta.jpg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow-y: auto;
}
.container {
    position: relative;
    width: 100%;
    height: 100%;
}
.content {
    position: absolute;
    margin: 8%;
    display: flex;
    z-index: 2;
}
.left-col {
    width: 60%;
    min-width: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    padding-bottom: 60px;
}
.right-col {
    width: 50%;
    position: relative;
}
#logo {
    width: 28px;
    height: auto;
}
.title {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-weight: 600;
    font-size: 20pt;
    color: #fff;
    margin: 0 0 1rem 0;
}
.invitation-text {
    color: #e88866;
}
.description {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 14pt;
    line-height: 1.8;
    color: #ffffffdd;
    margin: 0 0 2rem 0;
}
.description_mobile {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 14pt;
    line-height: 1.8;
    color: #ffffffdd;
    margin: 0 0 2rem 0;
    display: none;
}
#google-sign-in {
    font-family: 'Barlow', sans-serif;
    font-size: 12pt;
    font-weight: 600;
    height: 54px;
    display: inline-flex;
    align-items: center;
    background-color: #fff;
    color: #3b4640;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    align-self: flex-start;
}
#google-sign-in .google-logo {
    width: 32px;
    height: auto;
    margin-left: 1rem;
    margin-right: 0.5rem;
}
#google-sign-in .btn-text {
    position: relative;
    top: -2px;
    margin-right: 1.2rem;
}
#waitlist-btn {
    font-family: 'Barlow', sans-serif;
    font-size: 12pt;
    font-weight: 600;
    height: 54px;
    display: inline-flex;
    width: auto;
    align-items: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    background-color: transparent;
    color: #fff;
    border: 4px solid #fff;
    border-radius: 8pt;
    cursor: pointer;
    line-height: 1;
}
.btn-group {
    display: flex;
    align-items: center;
    align-self: flex-start;
}
#learn-btn {
    font-family: 'Barlow', sans-serif;
    font-size: 12pt;
    font-weight: 600;
    height: 54px;
    display: inline-flex;
    align-items: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    background-color: #ffffff;
    color: #3b4640;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    margin-left: 1rem;
    box-sizing: border-box;
}
#learn-btn .whorl-logo {
    width: 20px;
    height: auto;
    margin-right: 0.5rem;
    position: static;
}
#learn-btn .btn-text {
    position: relative;
    top: -1px;
}
.right-col {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}
@media (max-width: 768px) {
    :root {
        --mobile-bg-nudge: 20%;
    }
    html,
    body {
        background-position: calc(100% - var(--mobile-bg-nudge)) center;
    }
    .left-col {
        width: 100%;
        min-width: 200px;
    }
    .right-col {
        width: 20%;
        display: none;
    }
    .description {
        display: none;
    }
    .description_mobile {
        display: block;
    }
    #google-sign-in {
        display: none;
    }
    #learn-btn {
        display: none;
    }
}
