* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans KR', sans-serif;
}

.login-wrapper {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 20px;
}

.login-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 12px;
}
.login-header-symbol {
  width: 30px;
  height: 36px;
}
.login-header-title {
  font-weight: 500;
  font-size: 25px;
  line-height: 100%;
  color: #26282b;
}
.login-header-desc {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #9ea4aa;
}

.login-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  width: 100%;
}
.login-form-telecom-wrapper,
.login-form-phone-wrapper,
.login-form-qrcode-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.login-form-telecom-wrapper,
.login-form-phone-wrapper {
  flex: 1;
}
.login-form-telecom-title,
.login-form-phone-title,
.login-form-qrcode-title {
  color: #26282b;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
}
.login-form-phone-code-divider {
  display: flex;
  gap: 10px;
  align-items: center;
}

.login-form-telecom-checkboxs {
  display: flex;
  align-items: center;
  gap: 8px;
}
.login-form-telecom-checkbox-border {
  border: 1px solid #c9cdd2;
  flex: 1;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.login-form-telecom-checkbox-border.selected {
  border: 2px solid #1d7ff9;
}
.login-form-telecom-checkbox-border.disabled {
  cursor: not-allowed;
}

.login-form-phone-wrapper input {
  width: 100%;
  height: 48px;
  border: 1px solid #c9cdd2;
  padding: 0 16px 0 12px;
  border-radius: 8px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.login-form-phone-wrapper input::placeholder {
  color: #9ea4aa;
}
.login-form-phone-wrapper input:focus {
  border: 2px solid #1d7ff9;
  outline: none;
}
.login-form-phone-input {
  margin-bottom: 8px;
}
.login-form-qrcode-icon-border {
  border: 1px solid #c9cdd2;
  width: 112px;
  height: 112px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-button-wrapper {
  margin-bottom: 16px;
}
.login-button {
  width: 100%;
  height: 60px;
  background: #1d7ff9;
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  border: none;
  cursor: pointer;
  padding: 0 16px;
}

.login-footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
.login-footer-wrapper > li {
  display: flex;
  align-items: flex-start;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #454c53;
}
.login-footer-wrapper > li:before {
  content: '';
  min-width: 14px;
  min-height: 21px;
  width: 14px;
  height: 21px;
  background: url(assets/info.png) no-repeat center / 100%;
  margin-right: 8px;
}
.login-footer-wrapper > li button {
  border: none;
  background-color: inherit;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #454c53;
  margin: 0 3px;
  cursor: pointer;
  color: #0046b9;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.alert-wrapper {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.alert-body-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 312px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.2);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.alert-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}
.alert-comment {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  margin-bottom: 24px;
  color: #454c53;
}
.alert-button-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 48px;
}
.alert-button-wrapper button {
  flex: 1;
  height: 100%;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  border: none;
  cursor: pointer;
}
.alert-cancel-button {
  background-color: #f2f4f6;
  color: #26282b;
}
.alert-confirm-button {
  background-color: #1d7ff9;
  color: #ffffff;
}

