/* 로그인 페이지 — 메인 디자인 언어(히어로 배너 + 플랫 다크 폼) */

.login-form {
  max-width: 400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 비밀번호 표시 토글 */
.pw-wrap { position: relative; }
.pw-wrap .ds-input { padding-right: 46px; }

.pw-toggle {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text-dim);
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}

.pw-toggle:hover { background: var(--surface-2); color: var(--text); }

/* 아이디/비번 찾기 링크 */
.forgot-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 14px 0 26px;
  font-size: 13px;
  color: var(--text-faint);
}

.forgot-links a { color: var(--text-dim); text-decoration: none; }
.forgot-links a:hover { color: var(--text); }
.forgot-links .sep { color: var(--border-strong); }

/* 간편 로그인 */
.social-login { margin-top: 4px; }

.social-login-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-faint);
  margin-bottom: 16px;
}

.social-login-title::before,
.social-login-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.social-buttons a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.social-buttons .social-kakao,
.social-buttons .social-naver {
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.social-buttons .social-kakao { background: #FEE500; color: #191600; }
.social-buttons .social-naver { background: #03C75A; color: #ffffff; }

/* 회원가입 유도 */
.signup-cta {
  margin-top: 32px;
  text-align: center;
  font-size: 14px;
  color: var(--text-dim);
}

.signup-cta a { color: var(--accent); font-weight: 700; text-decoration: none; }
.signup-cta a:visited { color: var(--accent); }
