* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    color: black;
    font-family: "Fira Sans", sans-serif;
    background-color: #FBFBFB;
}

.container {
    display: grid;
    height: 100vh;
    position: relative;
    grid-template-rows: fit-content(100px);
    grid-template-columns: 1fr;
    grid-template-areas:
        "header"
        "content";
    background-color: #FBFBFB;
}

.content {
    display: grid;
    margin: 0 auto;
    max-width: 1600px;
    width: 100%;
    column-gap: 10px;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "contentleft contentright"
}

@media (max-width: 1200px) {
    .container {
        grid-template-columns: 1fr;
        grid-template-areas: 
        "header"
        "contentright"
    }

    .content {
        grid-template-columns: 1fr;
        grid-template-areas:
            "contentright"
    }
}

@media screen and (max-width: 1200px) {
    .contentleft {
        display: none !important;
    }
}

.topbar {
    grid-area: header;
    width: 100%;
    height: 50px;
    padding: 10px;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 8px 0px #0000003D;
    position: sticky;
    top: 0;
    z-index: 1;
}

.logo {
    height: 23px;
}

.contentleft {
    grid-area: contentleft;
    align-content: center;
}

.contentright {
    grid-area: contentright;
    padding: 20px;
}

.stacked-images {
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
}

.signin-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 20px;
}

.signin-container span {
    font-family: 'Proxima Nova Regular';
    font-size: 48px;
    font-weight: 400;
    text-align: left;

}

.signin-container .oauth,
.signin-container .clause {
    font-family: 'Gilroy Bold';
    font-size: 10px;
    font-weight: 400;
    line-height: 12px;
    text-align: left;
    color: #7A7E80;
}

.signin-container .clause {
    margin-top: 30px;
    width: 310px;
    text-align: center;
}

.signin-container .oauth {
    margin-top: 40px;
}

.signin-container p a {
    color: #2a90d5;
}

.signin-container .sign-in-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.signin-container .clause {
    font-family: 'Proxima Nova Regular';
}

.signin-button {
    font-family: 'Gilroy Medium';
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    background: #DF1B12;
    color: #FFFFFF;
    width: 300px;
    height: 32px;
    border: none;
    cursor: pointer;
}

@font-face {
    font-family: 'Gilroy Bold';
    font-weight: 700;
    font-style: normal;
    src: url(../webfonts/gilroy-bold.otf) format('opentype');
  }

  @font-face {
    font-family: 'Gilroy Medium';
    font-style: normal;
    font-weight: 500;
    src: url(../webfonts/gilroy-medium.otf) format('opentype');
  }

  @font-face {
    font-family: 'Proxima Nova Regular';
    src: url(../webfonts/proximanova-regular.otf) format('opentype');
    font-style: normal;
    font-weight: 400;
  }