/* SECTION Common */

.auth {
  position: relative;
  min-height: var(--app-height);
  width: 100vw;
}

/* ANCHOR Media Query */

@media (min-width: 1024px) {
  .auth footer .helpLink {
    display: none;
  }
}

@media (max-width: 1023px) {
  .auth header .menuClick,
  .auth header .linksHolder {
    display: none;
  }

  .auth footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: calc(100% - 20px);
    right: 50%;
    transform: translateX(50%);
  }

  .auth footer .headerLink {
    width: auto;
    flex-direction: column;
    margin-top: -5px;
  }

  .auth footer .headerLink p {
    font-size: var(--F10);
    color: var(--white);
    margin-left: 0;
  }

  .auth footer .headerLink .icon.medium {
    width: var(--icon-default);
    height: var(--icon-default);
  }

  .auth footer .headerLink svg * {
    fill: var(--white);
  }
}

@media (max-width: 767px) {
  .auth .version {
    right: 10px;
    left: initial;
    transform: none;
  }
}

/* !SECTION */

/* SECTION Splash */

.splash header {
  justify-content: flex-end;
}

.splash .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.splash .wrapper,
.login .wrapper,
.forgotPassword .wrapper {
  width: 100vw;
  position: relative;
}

.splash .content,
.login .content,
.forgotPassword .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ANCHOR Media Query */

@media (max-width: 1023px) {
  .splash .wrapper,
  .login .wrapper,
  .forgotPassword .wrapper {
    height: calc(100vh - 100px);
  }

  .splash .content {
    max-width: 400px;
    width: calc(100% - 120px);
  }
}

@media (min-width: 768px) {
  .login .content,
  .forgotPassword .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 767px) {
  .login .wrapper,
  .forgotPassword .wrapper {
    min-height: var(--app-height);
  }

  .login .content,
  .forgotPassword .content {
    margin: 20px auto 0;
  }
}

/* ANCHOR Media Query Height */

@media (min-height: 901px) and (min-width: 1024px) {
  .splash .wrapper,
  .login .wrapper,
  .forgotPassword .wrapper {
    height: calc(100vh - 300px);
  }

  .splash .content {
    width: 430px;
  }
}

@media (max-height: 900px) and (min-width: 1024px) {
  .splash .wrapper,
  .login .wrapper,
  .forgotPassword .wrapper {
    height: calc(100vh - 240px);
  }

  .splash .content {
    width: 400px;
  }
}

@media (max-height: 900px) and (min-width: 1024px) {
  .splash .wrapper,
  .login .wrapper,
  .forgotPassword .wrapper {
    height: calc(100vh - 40px);
  }
}

.splash .logo.big {
  width: 100%;
}

.splash .divider {
  margin: 25px auto;
}

.splash h1 {
  font-size: var(--F19);
  font-weight: var(--extra-bold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-align: center;
}

/* ANCHOR Media Query */

@media (max-width: 1023px) {
  .splash h1 {
    font-size: var(--F13);
  }
}

/* ANCHOR Media Query Height */

@media (min-height: 901px) and (min-width: 1024px) {
  .splash h1 {
    font-size: var(--F19);
  }
}

@media (max-height: 900px) and (min-width: 1024px) {
  .splash h1 {
    font-size: var(--F17);
  }
}

/* !SECTION */

/* SECTION Login */

.login .content,
.forgotPassword .content {
  align-items: flex-start;
}

.login h1,
.signUp h1 {
  font-weight: var(--black);
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 1px;
}

/* ANCHOR Media Query */

@media (min-width: 1024px) {
  .login .content,
  .forgotPassword .content {
    width: 360px;
  }

  .login h1,
  .signUp h1 {
    font-size: var(--F50);
    margin-bottom: 10px;
  }
}

@media (max-height: 900px) and (min-width: 1024px) {
  .login h1,
  .signUp h1 {
    font-size: var(--F50);
    margin-bottom: 5px;
  }
}

@media (max-width: 1023px) {
  .login .content,
  .forgotPassword .content {
    width: calc(100% - 40px);
  }

  .login h1,
  .signUp h1 {
    font-size: var(--F30);
  }
}

@media (max-width: 767px) {
  .login .wrapper,
  .forgotPassword .wrapper {
    padding-top: 60px;
  }

  .login .illustration,
  .forgotPassword .illustration {
    position: absolute;
  }

  .login header,
  .forgotPassword header,
  .login footer,
  .forgotPassword footer {
    position: absolute;
  }
}

@media (max-height: 670px) and (orientation: portrait) {
  .login .illustration {
    min-height: calc(var(--app-height) + 190px);
  }

  .forgotPassword .illustration {
    min-height: calc(var(--app-height) + 70px);
  }
}

.login .instructions,
.forgotPassword .instructionsTitle,
.signUp .instructionsTitle {
  font-weight: var(--medium);
  text-align: left;
  letter-spacing: 0.8px;
}

/* ANCHOR Media Query */

@media (min-width: 1024px) {
  .login .instructions,
  .forgotPassword .instructionsTitle,
  .signUp .instructionsTitle {
    font-size: var(--F14);
  }
}

@media (max-width: 1023px) {
  .login .instructions,
  .forgotPassword .instructionsTitle,
  .signUp .instructionsTitle {
    font-size: var(--F12);
  }
}

.login .divider,
.forgotPassword .divider {
  margin: 25px auto;
}

@media (max-height: 900px) and (min-width: 1024px) {
  .login .divider,
  .forgotPassword .divider {
    margin: 15px auto;
  }
}

.login form,
.forgotPassword form {
  width: 100%;
}

.login fieldset,
.forgotPassword fieldset {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

.login fieldset .roundedClick,
.forgotPassword fieldset .roundedClick {
  margin: 40px 0 20px;
  width: 100%;
}

.login .textClick,
.forgotPassword .textClick {
  align-self: center;
}

.login .signUpClick {
  width: 100%;
}

.login .inscriptionClosed {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--grey-1);
  height: 30px;
  border-radius: 30px;
  font-size: var(--F17);
  font-weight: var(--bold);
  letter-spacing: 2px;
  width: 100%;
  text-transform: uppercase;
  color: var(--white);
}

/* ANCHOR Media Query */

@media (min-width: 1024px) {
  .login .inscriptionClosed {
    font-size: var(--F17);
  }
}

@media (max-width: 1023px) {
  .login .inscriptionClosed {
    font-size: var(--F15);
  }
}

/* !SECTION */

/* SECTION Forgot Password */

.forgotPassword h1 {
  font-size: var(--F28);
  font-weight: var(--black);
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

@media (max-height: 900px) and (min-width: 1024px) {
  .forgotPassword h1 {
    line-height: var(--F28);
  }
}

.forgotPassword .instructions,
.signUp .instructions {
  font-size: var(--F12);
  font-weight: var(--medium);
  text-align: left;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

/* !SECTION */

/* SECTION Sign Up */

.signUp .wrapper {
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--index-modal);
}

.signUp .wrapper .scrollHolder {
  background-color: var(--white);
  box-shadow: var(--shadow);
}

/* ANCHOR Media Query */

@media (min-width: 1280px) {
  .signUp .wrapper {
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1220px;
    border-radius: 30px;
    padding: 30px var(--spacing-x1);
    height: calc(100% - 200px);
    max-height: 885px;
  }

  .signUp .wrapper .scrollHolder {
    height: 100%;
    border-radius: 30px;
    padding: 10px var(--spacing-x1);
  }

  .signUp .wrapper .scrollHolder form {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 30px 0;
  }
}

@media (max-width: 1279px) {
  .signUp header {
    background-color: transparent;
  }

  .signUp .wrapper {
    position: absolute;
    top: 85px;
    width: calc(100% - 40px);
    padding-bottom: 200px;
  }

  .signUp .wrapper .scrollHolder {
    border-radius: 15px;
    padding: 10px var(--spacing-x1) var(--spacing-x1);
  }

  @media (min-width: 1024px) {
    .signUp .wrapper {
      top: 135px;
    }
  }
}

.signUp .scrollHolder {
  width: 100%;
}

.signUp form {
  width: 100%;
}

.signUp fieldset {
  width: 100%;
  display: flex;
}

/* ANCHOR Media Query */

@media (min-width: 1280px) {
  .signUp fieldset {
    justify-content: space-evenly;
    align-items: stretch;
  }
}

@media (max-width: 1279px) {
  .signUp fieldset {
    height: 100%;
    flex-direction: column;
  }
}

.signUp .content {
  display: flex;
  flex-direction: column;
}

/* ANCHOR Left */

.signUp .content.left {
  justify-content: center;
}

.signUp .content.left .title {
  display: flex;
  justify-content: center;
}

.signUp .content.left .team svg * {
  fill: var(--blue-med);
}

.signUp .content.left .roundedClick.small p {
  font-size: var(--F10);
  letter-spacing: 0.2px;
}

.signUp h1 {
  margin-bottom: 0;
}

.signUp .instructions {
  margin-top: 20px;
}

.signUp .legalInfo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.signUp .legalInfo .checkbox {
  margin-top: 20px;
}

.signUp .content.left .divider {
  margin: 15px 0;
}

/* ANCHOR Media Query */

@media (min-width: 1280px) {
  .signUp .legalInfo.mobile,
  .signUp .avatar.mobile {
    display: none;
  }

  .signUp .content.left {
    width: 300px;
    margin-right: 40px;
  }

  .signUp .content.left .title {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
}

@media (max-width: 1279px) {
  .signUp .content.left .title {
    align-items: center;
  }

  .signUp .content.left .instructions,
  .signUp .legalInfo:not(.mobile),
  .signUp .avatar:not(.mobile) {
    display: none;
  }

  .signUp .legalInfo.mobile .checkbox .error {
    position: relative;
  }
}

/* ANCHOR Center */

.signUp .content.center {
  justify-content: flex-start;
  align-items: flex-end;
}

.signUp .content.center .divider {
  margin: 25px 0;
}

.signUp .field .inputWrapper {
  --auto-complete: var(--grey-2);
  --auto-complete-error: var(--grey-2);
  background-color: var(--grey-2);
}

.signUp .field:not(.vertical) .label {
  white-space: nowrap;
  margin-right: 20px;
}

.signUp .inviteLink {
  margin-top: 25px;
  margin-bottom: -15px;
}

.signUp .goBack {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

/* ANCHOR Media Query */

@media (min-width: 1280px) {
  .signUp .field .inputWrapper,
  .signUp .goBack,
  .signUp .content.center .roundedClick.big {
    width: 350px;
  }
}

@media (max-width: 1279px) {
  .signUp .content.center {
    margin-top: 20px;
  }

  .signUp .field {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .signUp .field .label {
    margin-bottom: 10px;
  }

  .signUp .content.center .roundedClick.big {
    align-self: center;
  }

  .signUp .goBack {
    width: 100%;
  }
}

/* ANCHOR Right */

.signUp .content.right {
  justify-content: flex-end;
}

.signUp .content.right .avatar {
  margin-bottom: 190px;
}

/* ANCHOR Media Query */

@media (max-width: 1279px) {
  .signUp .content.right {
    display: none;
  }
}

/* !SECTION */
