@font-face {
    font-family: "Vendo";
    src: URL("../fonts/Vendo.ttf") format("truetype");
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    padding: 0;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    font-family: "Vendo", sans-serif;
    font-size: 16px;
    color: #000;
    background-color: #fff;
    overflow: auto;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.layout {
    display: flex;
    flex: 1 1 auto;
    align-items: stretch;
}

.column1 {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
}

.card1 {
    width: 100%;
    max-width: 640px;
    margin: 2rem 15%;
    height: fit-content;
}

.card1-title {
    margin: 1rem 0 1.25rem 0;
    color: #19191b;
    font-size: 2rem;
    font-weight: 500;
    line-height: 2.5rem;
}

.card1-subtitle {
    margin: 0 0 1.75rem 0;
    color: #a0aec0;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5rem;
}

div.card1-button {
    width: 100%;
    height: 3rem;
    margin-bottom: 1.5rem;
    background-color: #f8f8f8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
}

div.card1-button:hover {
    background-color: #f0f0f0;
}

.card1-button-icon {
    display: block;
}

.card1-button-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #19191B;
}

div.card1-signup {
    width: 100%;
    height: 3rem;
    margin-bottom: 1.5rem;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #d8d8d8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: #19191B;
    cursor: pointer;
}

div.card1-signup:hover {
    border-color: #f8f8f8;
    background-color: #f8f8f8;
}

span.orange {
    color: #f89a1c;
}

p.card1-error {
    color: #e15563;
    width: 100%;
    min-height: 1.5rem;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.5rem;
    text-align: center;
}

.card1-terms {
    margin-top: 2.5rem;
    padding: 0 20%;
    color: #a0aec0;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.5rem;
    text-align: center;
}

span.link {
    color: #f89a1c;
    cursor: pointer;
}

span.link:hover {
    text-decoration: underline;
    text-underline-offset: 0.125rem;
}

.column2 {
    flex: 1 1 50%;
    padding: 2rem 2rem 2.5rem 2rem;
}

div.card2 {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    padding: 2rem 2.5rem;
    background: #664B2F;
    background: linear-gradient(0deg, rgba(102, 75, 47, 1) 0%, rgba(89, 88, 78, 1) 50%, rgba(70, 80, 85, 1) 100%);
    align-items: stretch;
}

.card2-content {
    flex: 1 1 auto;
}

.card2-footer-icon {
    width: 25rem;
    height: auto;
    margin-top: auto;
    margin-bottom: 0.75rem;
}

.card2-footer-text {
    width: 90%;
    text-align: left;
    line-height: 1.4rem;
    color: #c0cad8;
    font-size: 1.125rem;
    font-weight: 400;
}

div.www {
    width: 100%;
    height: 1.4rem;
    line-height: 1.4rem;
    color: #c0cad8;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
}

div.www:hover {
    text-decoration: underline;
    text-underline-offset: 0.125rem;
}

.footer {
    position: relative;
    height: 3.125rem;
    padding: 0 0 0 6em;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    color: #000;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.015rem;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 2em;
    right: 2em;
    height: 1px;
    background-color: #e5e5e5;
}

span.footer-right:hover {
    text-decoration: underline;
    text-underline-offset: 0.125rem;
}

path.google-blue {
    fill: #167ee6;
}

path.google-green {
    fill: #11b348;
    fill-rule: nonzero;
    opacity: 1;
}

path.google-dark-green {
    fill: #11993e;
    fill-rule: nonzero;
    opacity: 1;
}

path.google-yellow {
    fill: #ffd500;
    fill-rule: nonzero;
    opacity: 1;
}

path.google-red {
    fill: #ff4b25;
}

path.google-dark-red {
    fill: #d93f21;
}

path.microsoft-gray {
    fill: #f3f3f3;
}

path.microsoft-red {
    fill: #f35325;
}

path.microsoft-green {
    fill: #81bc08;
}

path.microsoft-blue {
    fill: #05a6f0;
}

path.microsoft-orange {
    fill: #ffba06;
}

/* Mobile: hide second column */
@media (max-width: 1000px) {
    .column1 {
        flex: 1 1 100%;
    }

    .column2 {
        display: none;
    }
    
    .card1-terms {
        padding: 0 5%;
    }

    .footer {
        justify-content: center;
        padding: 0;
    }
}