.login-page {
  --color-bg: #fff;
  min-width: 320px;
  min-height: 100%;
  background: #efefef;
  font-family: "Lato", "Pretendard", "Noto Sans KR", sans-serif;
}

.login-artboard {
  --content-gap: 21px;
  position: relative;
  container-type: inline-size;
  display: flex;
  width: 100%;
  max-width: 430px;
  height: 100vh;
  height: 100dvh;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
  background: #29b5e8;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.login-brand-title {
  position: relative;
  z-index: 2;
  width: 51.6539440204%;
  height: auto;
  flex: 0 0 auto;
  margin-top: 24px;
}

.login-snowflake {
  position: absolute;
}

.login-snowflake--right {
  top: 15.5%;
  right: -8%;
  width: 43%;
}

.login-snowflake--left {
  top: 53.5%;
  left: -10%;
  width: 48%;
}

.login-welcome {
  position: relative;
  z-index: 2;
  width: 90%;
  margin-top: 50px;
  color: #fff;
  text-align: center;
}

.login-welcome__mark {
  display: block;
  width: 10.5%;
  height: auto;
  margin: 0 auto;
}

.login-welcome__title {
  margin-top: 3.8%;
  color: #fff;
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.26;
  letter-spacing: -0.035em;
}

.login-welcome__copy {
  margin-top: var(--content-gap);
  color: #fff;
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}

.login-footer-building {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.login-form {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  margin-top: var(--content-gap);
}

.login-field {
  position: relative;
  display: flex;
  width: 83.43%;
  height: 48px;
  align-items: center;
  padding: 0 3.2%;
  border: 1.5px solid #fff;
  border-radius: 2px;
  background: #29b5e8;
  box-shadow: 0 4px 0 rgba(0, 142, 198, 0.28);
}

.login-field--code {
  margin-top: 12px;
}

.login-field__icon {
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  object-fit: contain;
}

.login-field__divider {
  width: 1px;
  height: 22px;
  margin: 0 15px;
  background: #fff;
}

.login-field input {
  min-width: 0;
  height: 100%;
  flex: 1;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-family: "Lato", "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.login-field input::placeholder {
  color: #fff;
  opacity: 1;
}

.login-field:focus-within {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.28), 0 4px 0 rgba(0, 142, 198, 0.28);
}

.login-help {
  width: 90%;
  margin-top: 10px;
  color: #fff;
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.login-submit {
  display: flex;
  width: 41.88%;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #7f43ce;
  color: #fff;
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease;
}

.login-submit:hover,
.login-submit:focus-visible {
  background: #7136bd;
  outline: none;
  transform: translateY(-2px);
}

.login-submit:active {
  transform: scale(0.97);
}

.login-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Keep the designed vertical rhythm on extra-tall mobile screens. */
@supports (width: 1cqw) {
  .login-snowflake--right {
    top: 27.548828cqw;
  }

  .login-snowflake--left {
    top: 95.087891cqw;
  }

}

@media (max-width: 520px) {
  .login-artboard {
    box-shadow: none;
  }

  .login-field {
    padding-right: 3.8%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .login-submit {
    transition: none;
  }
}
