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

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  letter-spacing: -1px;
  font-family: Figtree Variablefont, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.container {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  min-height: 100vh;
  display: grid;
  position: relative;
  overflow: hidden;
}

.logo {
  z-index: 1;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 4.5rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: absolute;
  inset: 2rem 0 auto;
}

@media screen and (max-width: 991px) {
  .logo {
    padding-top: 3rem;
    justify-content: center;
    top: .5rem;
  }
}

.left-container {
  background-color: #fdf9f7;
  justify-content: center;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 5rem;
  display: flex;
  position: relative;

  .left-content {
    width: 100%;
    max-width: 20rem;

    .text-center {
      text-align: center;
    }
    .main-title {
      font-family: Bricolagegrotesque Variablefont, Arial, sans-serif;
      font-size: 5rem;
      font-weight: 700;
      line-height: 1.1;
    }

    .main-text {
      font-family: Bricolagegrotesque Variablefont, Arial, sans-serif;
      font-size: 1.125rem;
      font-weight: 500;
      line-height: 1.2;
      padding-top: 1rem;
    }


    .button-wrapper {
      padding-top: 2rem;
      grid-column-gap: 1rem;
      grid-row-gap: 1rem;
      grid-template-rows: auto;
      grid-template-columns: 1fr;
      grid-auto-columns: 1fr;
      display: grid;

      .icon_login {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 1.5rem;
        height: 1.5rem;
        display: flex;
      }

      .button.is-secondary.is-icon {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
        border: 1px solid #dfe3e2;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        display: flex;
      }

      .button.is-icon {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        display: flex;
      }

      .button.is-secondary {
        background-color: #fff;
        color: #041416;
        transition: color .2s, background-color .2s;
      }

      .button {
        grid-column-gap: 1rem;
        grid-row-gap: 1rem;
        background-color: #339ca6;
        color: #fff;
        text-align: center;
        border-radius: .75rem;
        justify-content: flex-start;
        align-items: center;
        padding: .75rem 1rem;
        font-weight: 600;
        text-decoration: none;
        transition: background-color .2s;
        display: flex;
      }

      .w-inline-block {
        max-width: 100%;
        display: inline-block;
      }

      .button.is-secondary:hover {
        background-color: #1f5e64;
        color: #fff;
      }
    }
  }
}

.right-container {
  background-color: #0a1f21;
  text-align: center;
  justify-content: center;
  align-items: flex-start;
  padding-top: 10vh;
  display: flex;
  position: relative;
  font-family: Bricolagegrotesque Variablefont, Arial, sans-serif;

  .bottom-right-img {
    object-fit: contain;
    width: 80%;
    max-width: 80%;
    max-height: 70vh;
    position: absolute;
    inset: auto -2% 0 auto;
  }

  .right-content {
    width: 100%;
    max-width: 32rem;

    .data-wrap-balance {
      text-wrap: balance;
    }
    .text-color-grey {
      color: #fff;
    }
    .heading-style-h2 {
      font-size: 3rem;
      line-height: 1.2;
    }
  }
}
.line-divider-wrapper {
  padding: 1rem;
}

.line-divider {
  background-color: #a4a6af;
  width: 100%;
  height: 1px;
}

.text-color-grey800 {
  color: #3c3e3e;
}

.text-color-blue {
  color: #339ca6;
}



@media screen and (max-width: 767px) {
  .container {
    align-items: start;
  }
}

@media screen and (max-width: 991px) {
  .container {
    grid-template-columns: 1fr;
    background-color: #fdf9f7;
  }
}

@media screen and (max-width: 991px) {
  .right-container {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .left-container .left-content .main-title {
    font-size: 3rem;
  }
}

@media screen and (max-width: 991px) {
  .no-account {
    text-align: center;
  }
}
