@font-face {
  font-family: "Helvetica Neue";
  font-weight: 400;
  font-display: auto;
  src: local("Helvetica Neue"), local("HelveticaNeue"),
    url("../fonts/HelveticaNeue.ccad04d46768.ttf") format("truetype");
}

@font-face {
  font-family: "Helvetica Neue";
  font-weight: 500;
  font-display: auto;
  src: local("Helvetica Neue Medium"), local("HelveticaNeue-Medium"),
    url("../fonts/HelveticaNeueMedium.0a13c540938b.ttf") format("truetype");
}

@font-face {
  font-family: "Helvetica Neue";
  font-weight: 700;
  font-display: auto;
  src: local("Helvetica Neue Bold"), local("HelveticaNeue-Bold"),
    url("../fonts/HelveticaNeueBold.7f281199258d.ttf") format("truetype");
}

:root {
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.87rem;
  --font-size-base: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.5rem;
  --font-size-xl: 1.75rem;
  --font-size-2xl: 2.75rem;

  --field-input-background: white;
  --field-input-border: 1px solid #d8d8d8;
  --field-input-font-size: var(--font-size-sm);
  --color-dark-purple: #5b3580;
  --color-light-purple: #efebf2;
}

* {
  box-sizing: border-box !important;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  word-break: keep-all;
}

a {
  color: inherit;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100dvh;
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  font-size: var(--font-size-base);
  color: #333333;
  background: linear-gradient(180deg, #f2edfc 21.02%, #fbf9ff 89.23%);
  display: flex;
  flex-direction: row;
}

body.sso--layout {
  display: grid;
  background: #fff;
}

.info {
  display: none;
}

body.sso--layout .info {
  align-items: flex-start;
  justify-content: center;
  width: 80%;
  margin: auto;
}

.info__container {
  display: flex;
  width: 100%;
  margin: 3rem 0 0;
  flex-direction: column;
  align-items: center;
}

.info__container__title {
  line-height: 150%;
  font-size: var(--font-size-lg);
  font-weight: 700;
  letter-spacing: 0.28px;
  color: #bdaecc;
  text-align: center;
  margin-bottom: 14px;
}

.info__container__subtitle {
  font-size: var(--font-size-md);
  line-height: 150%;
  letter-spacing: 0.22px;
  font-weight: 400;
  color: #fdfdfd;
  text-align: center;
  max-width: 430px;
  margin: auto;
  margin-bottom: 24px;
}

.info__container__title span {
  color: #fdfdfd;
  font-weight: 700;
}

.info__box {
  width: 340px;
  background: white;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.1);
  border-radius: 26px;
  padding: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info__box h3 {
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 1.75rem;
  text-align: center;
}

.info__box p {
  font-size: 1.25rem;
  line-height: 2rem;
  margin: 1rem 0.5rem;
  text-align: center;
  position: inherit;
}

.info__container__content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.info__container__item {
  width: 210px;
}

.info__container__item h3 {
  color: #bdaecc;
  font-size: var(--font-size-md);
  font-weight: 700;
  letter-spacing: 0.24px;
  word-break: break-word;
}

.info__container__item p {
  color: #fff;
  font-size: var(--font-size-sm);
  font-weight: 400;
  letter-spacing: 0.168px;
  word-break: break-word;
  word-wrap: break-word;
}

.info__container__item p span {
  color: #fdfdfd;
  font-weight: 700;
}

.header {
  align-items: center;
  display: flex;
  background-color: #ffffff;
  justify-content: center;
  padding: 1rem 0;
  margin-bottom: 1rem;
  position: absolute;
  left: 0;
  width: 100%;
}

.header__logo {
  width: 145px;
}

.main {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  overflow: initial;
  margin: 90px 14px 0;
}

.main__title {
  font-size: var(--font-size-lg);
  font-weight: bold;
  margin: 0 0 1.25rem;
}

.login__title__centered {
  text-align: center;
  font-size: var(--font-size-lg);
  font-weight: bold;
  margin: 0 0 1.25rem;
}

.main .omega-animation-container {
  margin: 1rem auto;
}

.modal {
  min-height: 100dvh;
  width: 30rem;
  max-width: 30rem;

  display: flex;
  flex-direction: column;
  overflow: auto;
  background: transparent;
}

body.sso--layout .modal {
  width: auto;
  max-width: 100%;
  padding: 0 5vw;
}

.modal__inner {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  max-width: 30rem;
  margin: 0 auto;
  align-self: flex-end;
}

.login__options__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(0, 0, 0, 0.2);
  font-size: var(--font-size-xs);
  margin: 20px 0;
}

.login__options__divider :last-child,
.login__options__divider :first-child {
  flex: 1;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.tos {
  font-size: var(--font-size-xs);
  margin-top: 23px;
  text-align: left;
  color: #676767;
  word-break: break-word;
}

.tos__consumer {
  font-size: var(--font-size-xs);
  margin-top: 23px;
  text-align: left;
  color: #676767;
  word-break: break-word;
}

.tos a {
  font-weight: bold;
}

.tos__consumer a {
  font-weight: bold;
}

.register__gam-info img {
  width: 24px;
}

.purple-button {
  background: #5b3580;
  color: white;
}

.portal-button,
.login__options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.portal-button a,
.login__options a {
  padding: 12px 66px;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  color: #3c3c3c;
  background: white;
}

.login__options img {
  width: 15px;
}

.back-to-last-page-box {
  margin-bottom: 20px;
}

@media only screen and (min-width: 481px) {
  body:before {
    content: "";
    position: fixed;
    top: 0;
    left: 100px;
    right: 0;
    bottom: 0;
    background-image: url("/static/assets/hero-bg.53aa526b9cc4.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    z-index: -1;
  }

  body.sso--layout:before {
    display: none;
  }

  .header {
    position: relative;
    margin: 4rem 0 0;
  }

  .modal {
    background: white;
  }

  .main {
    margin: 0 60px;
  }

  body.sso--layout .main {
    margin: 0;
  }

  .tos__consumer {
    margin-bottom: 1rem;
  }

  .header__logo {
    width: 195px;
  }

  .header {
    margin: 3rem 0 2rem;
  }

  @media only screen and (min-width: 481px) and (min-height: 824px) {
    .tos__consumer {
      margin-top: auto;
    }
  }

  @media only screen and (min-width: 1780px) {
    .info__container img {
      width: auto;
    }
  }

  @media only screen and (min-width: 56rem) {
    body.sso--layout {
      grid-template-columns: 35% 1fr;
      background: #0e273c;
    }

    body > .info {
      display: flex;
      flex-grow: 1;
      justify-content: center;
      align-items: center;
    }

    .info__container__content {
      width: 100%;
    }
  }

  .text-align-left {
    text-align: left;
  }

  .text-align-center {
    text-align: center;
  }

  .site-name {
    color: #642780;
  }
}
