@font-face {
  font-family: geomanist-book;
  src: url("../../fonts/geomanist-book.eot");
  src: url("../../fonts/geomanist-book.eot?#iefix") format("embedded-opentype"),
    url("../../fonts/geomanist-book.woff2") format("woff2"),
    url("../../fonts/geomanist-book.woff") format("woff"),
    url("../../fonts/geomanist-book.ttf") format("truetype"),
    url("../../fonts/geomanist-book.svg#geomanistregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: geomanist-regular;
  src: url("../../fonts/geomanist-regular.eot");
  src: url("../../fonts/geomanist-regular.eot?#iefix")
      format("embedded-opentype"),
    url("../../fonts/geomanist-regular.woff2") format("woff2"),
    url("../../fonts/geomanist-regular.woff") format("woff"),
    url("../../fonts/geomanist-regular.ttf") format("truetype"),
    url("../../fonts/geomanist-regular.svg#geomanistregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

body,
html {
  height: 100%;
}

.login-container {
  min-height: 100%;
  min-width: 320px;
  display: grid;
  grid-template-columns: 40% 60%;
  overflow-y: auto;
}

.login-form-container {
  position: relative;
  display: grid;
  grid-template-columns: 20% auto 20%;
  grid-template-rows: 10vh 1fr 10vh;
  grid-template-areas:
    ". . ."
    ". form ."
    ". . .";
}

.login-form-container-area {
  grid-area: form;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-content-container {
  background-image: url("../../img/login-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-content {
  display: flex;
  width: 100%;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  flex: 1 0 auto;
}

.main-content-title {
  color: #ffffff;
  font-size: 32px;
  font-family: geomanist-book;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 70px;
  text-align: center;
}

.steps {
  display: flex;
  gap: 80px;
}

.steps > .step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-icon-text {
  color: #ffffff;
  font-size: 16px;
  font-family: geomanist-book;
  max-width: 155px;
  text-align: center;
}

.main-content-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-content-footer-title {
  color: #ffffff;
  font-size: 18px;
  font-family: geomanist-book;
  margin-bottom: 25px;
  margin-top: auto;
}

.stacks-logo {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr 1fr;
  grid-row-gap: 55px;
  grid-column-gap: 48px;
  margin-bottom: 30px;
}

.stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: #ffffff;
  font-size: 14px;
  font-family: geomanist-regular;
}

.login-form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 440px;
}

.login-form-wrapper.login-form-with-subheader {
  margin-top: 16px;
}

.login-form-internal-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.login-form-internal-form > .primary-button {
  margin-top: 8px;
}

.login-form-multiple-fields-one-line {
  display: flex;
  gap: 20px;
}

.main-logo {
  margin: 0 auto 48px auto;
}

.main-logo.with-back-button {
  margin-bottom: 16px;
}

strong {
  font-weight: 600;
}

.back-button-wrapper {
  width: max-content;
  margin-bottom: 16px;
}

.text-button.additional-footer-button {
  font-size: 12px;
  color: #626369;
}

.login-form-additional-footer-end {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
}

@media screen and (max-width: 1200px) {
  .login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .login-form-container {
    width: 80%;
    flex: 1 0 auto;
  }

  .main-content-container {
    flex: 1 0 auto;
  }
}
