.login-modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}
@media (max-width: 767px) {
  .login-modal-wrapper {
    align-items: center;
  }
}
.login-modal {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px 20px;
  width: 100%;
  max-width: 410px;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.login-modal::-webkit-scrollbar {
  display: none;
}
@media (max-width: 767px) {
  .login-modal {
    max-width: 390px;
  }
}
.login-modal .login-modal-header {
  position: absolute;
  top: 30px;
  left: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  height: 45px;
}
@media (max-width: 767px) {
  .login-modal .login-modal-header {
    height: 40px;
  }
}
.login-modal .back-btn {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
  margin: 0;
}
.login-modal .back-btn img {
  width: 36px;
  height: 36px;
  display: block;
}
.login-modal .back-btn:hover {
  opacity: 0.7;
}
.login-modal .back-btn:active {
  opacity: 0.5;
}
.login-modal .back-btn:focus {
  outline: 2px solid #666666;
  outline-offset: 2px;
  border-radius: 4px;
}
.login-modal .close-btn {
  position: absolute;
  top: 35px;
  right: 20px;
  width: 35px;
  height: 35px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}
.login-modal .close-btn svg {
  width: 35px;
  height: 35px;
}
.login-modal .close-btn svg path {
  fill: #C6C6C6;
  transition: fill 0.2s ease;
}
.login-modal .close-btn:hover svg path {
  fill: #666666;
}
.login-modal .close-btn:active svg path {
  fill: #000000;
}
.login-modal .close-btn:focus {
  outline: 2px solid #666666;
  outline-offset: 2px;
  border-radius: 4px;
}
.login-modal .login-form {
  width: 370px;
}
@media (max-width: 767px) {
  .login-modal .login-form {
    width: 350px;
  }
}
@media (max-width: 425px) {
  .login-modal .login-form {
    width: 100%;
    max-width: 100%;
  }
}
.login-modal .login-form h1 {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.25em;
  letter-spacing: -0.015em;
  text-align: center;
  margin-bottom: 20px;
  color: #111111;
}
@media (max-width: 767px) {
  .login-modal .login-form h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }
}
.login-modal .login-form .login-message {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.login-modal .login-form .form-group {
  margin-bottom: 16px;
}
.login-modal .login-form .form-group:last-of-type {
  margin-bottom: 12px;
}
.login-modal .login-form .form-group label {
  display: block;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.6em;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: #111111;
}
.login-modal .login-form .form-group input {
  width: 100%;
  padding: 10px 12px;
  border: 0.8px solid #C0C0C0;
  border-radius: 4px;
  font-size: 14px;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.login-modal .login-form .form-group input:focus {
  outline: none;
  border-color: #000;
}
.login-modal .login-form .form-group input::placeholder {
  color: #C0C0C0;
}
.login-modal .login-form .form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  font-size: 14px;
}
.login-modal .login-form .form-options .checkbox {
  display: flex;
  align-items: center;
  gap: 3px;
  cursor: pointer;
}
.login-modal .login-form .form-options .checkbox input[type="checkbox"] {
  width: 13px;
  height: 13px;
  border: 1px solid #000;
  border-radius: 2px;
  cursor: pointer;
  margin: 0;
}
.login-modal .login-form .form-options .checkbox span {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6em;
  letter-spacing: -0.02em;
  color: #111111;
}
.login-modal .login-form .form-options a {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6em;
  letter-spacing: -0.02em;
  color: #111111;
  text-decoration: none;
}
.login-modal .login-form .form-options a:hover {
  text-decoration: underline;
}
.login-modal .login-form .btn-login {
  width: 100%;
  padding: 10px 12px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  margin-bottom: 9px;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.login-modal .login-form .btn-login:hover {
  background: #333;
}
.login-modal .login-form .btn-login:active {
  background: #000;
}
.login-modal .login-form .btn-signup {
  display: block;
  width: 100%;
  padding: 10px 12px;
  background: #fff;
  border: 0.8px solid #C0C0C0;
  border-radius: 4px;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  color: #111111;
  cursor: pointer;
  transition: background 0.2s ease;
}
.login-modal .login-form .btn-signup:hover {
  background: #f5f5f5;
}
.login-modal .login-form .sns-login {
  margin-top: 35px;
}
.login-modal .login-form .sns-login .divider {
  position: relative;
  text-align: center;
  margin-bottom: 25px;
  padding: 13px 0;
}
.login-modal .login-form .sns-login .divider span {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 0 10px;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6em;
  letter-spacing: -0.015em;
  color: #111111;
}
.login-modal .login-form .sns-login .divider::before, .login-modal .login-form .sns-login .divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 93px;
  height: 1px;
  background: #C0C0C0;
}
.login-modal .login-form .sns-login .divider::before {
  left: 0;
}
.login-modal .login-form .sns-login .divider::after {
  right: 0;
}
@media (max-height: 780px) {
  .login-modal .login-form .sns-login .divider {
    display: none;
  }
}
.login-modal .login-form .sns-login .sns-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.login-modal .login-form .sns-login .sns-buttons .sns-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  text-decoration: none;
}
.login-modal .login-form .sns-login .sns-buttons .sns-btn:hover {
  transform: scale(1.05);
}
.login-modal .login-form .sns-login .sns-buttons .sns-btn.google {
  border: 1px solid #CCD5DD;
  background: #fff;
}
.login-modal .login-form .sns-login .sns-buttons .sns-btn.google img {
  width: 25.4px;
  height: 25.4px;
}
.login-modal .login-form .sns-login .sns-buttons .sns-btn.naver {
  background: #03C75A;
}
.login-modal .login-form .sns-login .sns-buttons .sns-btn.naver img {
  width: 17px;
  height: 20px;
}
.login-modal .login-form .sns-login .sns-buttons .sns-btn.kakao {
  background: #FFEB02;
}
.login-modal .login-form .sns-login .sns-buttons .sns-btn.kakao img {
  width: 24px;
  height: 22px;
}
.login-modal .login-form .login-banner {
  margin-top: 35px;
  height: 70px;
  overflow: hidden;
  position: relative;
}
.login-modal .login-form .login-banner a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.login-modal .login-form .login-banner .banner-content {
  position: relative;
  height: 100%;
}
/*# sourceMappingURL=442293b40448f8bd6d6195ce96ed0ed5708cecd7.LoginModal.scss.map */
