@font-face {
  font-family: "Maison Neue";
  src: url("/platform-content/themes/generic-2021/fonts/maisonneuebold-webfont.woff2") format("woff2"), url("/platform-content/themes/generic-2021/fonts/maisonneuebold-webfont.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Maison Neue";
  src: url("/platform-content/themes/generic-2021/fonts/maisonneuebook-webfont.woff2") format("woff2"), url("/platform-content/themes/generic-2021/fonts/maisonneuebook-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.tns-nav {
  text-align: center;
}
.tns-nav button {
  margin: 0 5px;
  background: #ccc;
  border: 0;
  width: 24px;
  height: 2px;
}
.tns-nav button.tns-nav-active {
  background: #2A96CE;
}

.login-container {
  position: relative;
  padding: 0 20px;
  text-align: center;
  line-height: 32px;
}
.login-container .heading {
  margin: 0 0 20px;
  font-size: 28px;
  line-height: 32px;
}
.login-container p {
  max-width: 400px;
  line-height: 28px;
}
.login-container label {
  min-width: 380px;
  max-width: 550px;
}
@media (max-width: 680px) {
  .login-container label {
    min-width: auto;
    width: 100%;
    max-width: 100%;
  }
}
.login-container form {
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}
.login-container input:not([type=checkbox]), .login-container select, .login-container textarea {
  color: black;
  background: white;
  border-radius: 55px;
  padding: 5px 25px;
}
.login-container input:not([type=checkbox]):-ms-input-placeholder, .login-container select:-ms-input-placeholder, .login-container textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: gray;
}
.login-container input:not([type=checkbox])::-moz-placeholder, .login-container select::-moz-placeholder, .login-container textarea::-moz-placeholder {
  color: gray;
}
.login-container input:not([type=checkbox])::placeholder, .login-container select::placeholder, .login-container textarea::placeholder {
  color: gray;
}
.login-container .form-controls {
  padding: 40px 20px;
  width: 100%;
}
.login-container button {
  position: relative;
  margin: 0 10px 10px 0;
  padding: 8px 30px;
  width: 60px;
  height: 56px;
  color: white;
  font-size: 16px;
  font-family: "Maison Neue", "Verdana", sans-serif;
  text-rendering: optimizeLegibility;
  font-weight: normal;
  background: #000;
  border: 0;
  border-radius: 0 60px 60px 0;
  border-left: none;
  overflow: hidden;
}
@media (-webkit-min-device-pixel-ratio: 2) {
  .login-container button {
    -webkit-font-smoothing: antialiased;
  }
}
.login-container button.button-login {
  text-indent: -9999em;
  margin-right: 0;
}
.login-container button.button-login:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: url("../../images/arrow-right.svg") no-repeat 50% 50%;
}
.login-container [data-login-stage=success] {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
.login-container [data-login-stage=success] p {
  font-size: 16px;
}
.login-container [data-login-stage=success] a {
  color: white;
}
.login-container [data-login-stage=success] a:hover {
  color: white;
}

.loading-indicator {
  display: none;
}
.loading-indicator[data-user-state=waiting] {
  display: block;
  width: 100%;
  min-height: 100px;
}
.loading-indicator[data-user-state=waiting]:after {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  width: 50px;
  height: 50px;
  content: "";
  background: #2A96CE url("../../images/loading.svg") no-repeat 50%;
  background-size: auto 50%;
  border-radius: 50%;
}