.body-container--auth {
  padding-bottom: 0;
}

.auth-title-container {
  max-width: 1260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.auth-title-container--second {
  justify-content: left;
  align-items: start;
  padding-bottom: 16px;
}

.auth-title {
  color: #006174;
  text-align: center;
  font-size: 54px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
}

.auth-subtitle {
  color: #003E4B;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  line-height: 30px;
  margin: 0;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.auth-step {
  display: flex;
  animation: fade-in 1s;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.auth-step.auth-step--hidden {
  display: none;
  animation: fade-out 1s;
}

.auth-content-container {
  max-width: 1260px;
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.auth-img {
  max-width: 575px;
}

.auth-input-container {
  width: 400px;
}

.auth-label {
  display: block;
  color: #00292E;
  font-size: 16px;
  margin: 0;
  margin-bottom: 4px;
}

.auth-input-wrapper {
  margin-bottom: 12px;
}

.auth-input-wrapper--last {
  margin-bottom: 24px;
}

.auth-input,
.auth-select {
  width: 100%;
  border: 1px solid #ACB8BA;
  border-radius: 8px;
  height: 40px;
  padding: 8px 12px;
  font-size: 16px;
  color: #00292E;
  background-color: white;
}

.auth-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url('/assets/icons/select-arrow-down.svg') no-repeat right 0 center;
  background-color: white;
}

.auth-select--phone {
  width: 112px;
}

.auth-password-wrapper {
  position: relative;
}

.auth-password {
  padding-right: 32px;
}

.auth-password-eye {
  position: absolute;
  background: url('/assets/icons/password-eye.svg') no-repeat;
  width: 24px;
  height: 24px;
  top: 8px;
  right: 12px;
}

.auth-checkbox-wrapper {
  padding: 0 16px;
}

.auth-button-container {
  display: flex;
  justify-content: right;
  margin-top: 48px;

  .button-style {
    margin: 0;
    display: block;
  }
}

.auth-arrow {
  min-width: 150px;
  margin-top: 80px;
}

.auth-phone-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.error-message {
  color: #d33f44;
  font-size: 14px;
  font-weight: 400;
  margin: 4px 12px;
}

.auth-input.invalid,
.auth-select.invalid {
  border: 1px solid #d33f44;
}

.auth-input:focus,
.auth-select:focus,
.auth-input.invalid:focus,
.auth-select.invalid:focus {
  outline: none;
  border: 1px solid #006174;
}

.auth-input:read-only {
  border: 1px solid #ACB8BA;
  background-color: #F4F5F6;
  color: #ACB8BA;
  cursor: not-allowed;
}

.auth-link {
  color: #006174;
  text-decoration: none;
  margin-top: 16px;
}

.auth-message-container {
  display: none;
  align-self: center;
}

.auth-message-title-with-icon {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.auth-message-title {
  color: #006174;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.auth-message-icon {
  width: 48px;
}

.auth-input-info {
  display: block;
  color: #006174;
  font-size: 14px;
  font-style: normal;
  line-height: 1.5;
  margin: 4px 12px 0;
}

.auth-input-info.default-hidden {
  display: none;
}

.auth-arc-mobile {
  display: none;
}

@media screen and (max-width: 1300px) {
  .auth-content-container {
    padding: 0 64px;
  }

  .auth-title-container {
    padding: 40px 64px 40px;
    width: 100%;
  }

  .auth-title-container--second {
    padding: 40px 16px 40px;
  }

  .auth-content-container--second {
    padding: 0 16px;
  }

  .auth-img {
    max-width: 450px;
  }

  .auth-arrow {
    max-width: 135px;
  }
}

@media screen and (max-width: 1200px) {
  .auth-arrow {
    margin-top: 60px;
  }

  .auth-img {
    max-width: 375px;
  }

  .auth-input-container {
    width: 350px;
  }
}

@media screen and (max-width: 1100px) {
  .auth-img {
    max-width: 300px;
  }

  .auth-arrow {
    margin-top: 40px;
  }

  .auth-input-container {
    width: 300px;
  }
}

@media screen and (max-width: 900px) {
  .body-container--auth {
    padding-bottom: 70px;
  }

  .auth-title-container {
    padding: 16px;
    width: 100%;
  }

  .auth-title-container--second {
    margin-top: 0;
    align-items: center;
  }

  .auth-title {
    font-size: 34px;
    line-height: 42px;
  }

  .auth-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .auth-content-container {
    padding: 0 16px;
    justify-content: center;
  }

  .auth-content-container--second {
    padding-bottom: 40px;;
  }

  .auth-input-container {
    width: 400px;
  }

  .auth-img {
    display: none;
  }

  .auth-arrow {
    display: none;
  }

  .auth-checkbox-wrapper {
    padding: 0;
  }

  .auth-button-container {
    position: fixed;
    left: 0;
    bottom: 0;
    display: block;
    width: 100vw;
    z-index: 2;
    padding: 16px;
    margin: 0;
    justify-content: center;

    .button-style {
      width: 100%;
    }
  }

  .auth-arc-mobile {
    display: block;
    position: fixed;
    bottom: 0px;
    left: 0px;
    z-index: -1;
  }
}