/* =========================
   비밀번호 찾기
========================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #f5f5f5;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.find-password-screen {
  min-height: 100vh;
  padding: 0 20px;
  background-color: #ffffff;
}
/* =========================
   박스
========================= */

.find-password-box {
  width: 100%;
  padding-top: 70px;
}

.find-password-box h1 {
  margin: 0 0 24px;
  color: #111111;
  font-size: 18px;
  font-weight: 700;
}

/* =========================
   입력 항목
========================= */

.find-field {
  width: 100%;
  margin-bottom: 16px;
  position: relative;
}

.find-field label {
  display: block;
  margin-bottom: 6px;
  color: #222222;
  font-size: 13px;
  font-weight: 500;
}

/* =========================
   일반 input (ID용)
========================= */

.normal-input {
  width: 100%;
  height: 54px;
  padding: 0 12px;
  border: 1px solid #cfd6dc;
  border-radius: 0;
  outline: none;
  background-color: #ffffff;
  color: #222222;
  font-size: 13px;
}

.normal-input::placeholder {
  color: #aaaaaa;
}

.normal-input:focus {
  border-color: #52aead;
}

/* =========================
   input + 버튼 (이메일, 인증번호용)
========================= */

.input-button-wrap {
  position: relative;
  width: 100%;
  height: 54px;
}

.input-button-wrap input {
  width: 100%;
  height: 100%;
  padding: 0 92px 0 12px;
  border: 1px solid #cfd6dc;
  border-radius: 0;
  outline: none;
  background-color: #ffffff;
  color: #222222;
  font-size: 13px;
}

.input-button-wrap input::placeholder {
  color: #aaaaaa;
}

.input-button-wrap input:focus {
  border-color: #52aead;
}

.input-button-wrap input:disabled {
  background-color: #fafafa;
}

/* =========================
   인증 버튼
========================= */

.input-button-wrap button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  height: 32px;
  padding: 0 12px;
  border: none;
  border-radius: 5px;
  background-color: #eeeeee;
  color: #555555;
  font-size: 11px;
  cursor: pointer;
}

.input-button-wrap button:disabled {
  color: #aaaaaa;
  cursor: default;
}

.input-button-wrap button.active {
  background-color: #52aead;
  color: #ffffff;
}

/* =========================
   인증 안내
========================= */

.verification-message {
  min-height: 14px;
  margin: 5px 0 0;
  color: #888888;
  font-size: 10px;
}

.verification-message.success {
  color: #52aead;
}

.verification-message.error {
  color: #e34b4b;
}

/* =========================
   다음 버튼
========================= */

.next-button {
  width: 100%;
  height: 48px;
  margin-top: 4px;
  border: none;
  background-color: #52aead;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.next-button:active {
  background-color: #469b9a;
}

/* =========================
   모바일
========================= */

@media (max-width: 390px) {
  .find-password-screen {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* =========================
   이메일 자동완성 드롭다운
========================= */

.email-suggest-list {
  display: none; /* 평소에는 아예 화면에서 숨겨 테두리 잔상이 남지 않음 */
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin: 2px 0 0 0;
  padding: 0;
  list-style: none;
  background-color: #ffffff;
  border: 1px solid #cfd6dc;
  border-radius: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  max-height: 180px;
  overflow-y: auto;
  z-index: 999;
}

/* JS에서 .show 클래스를 추가했을 때만 노출 */
.email-suggest-list.show {
  display: block;
}

.email-suggest-list li {
  padding: 12px 14px;
  font-size: 13px;
  color: #333333;
  cursor: pointer;
  border-bottom: 1px solid #f5f5f5;
}

.email-suggest-list li:last-child {
  border-bottom: none;
}

.email-suggest-list li:active,
.email-suggest-list li:hover {
  background-color: #f0f7f7;
  color: #52aead;
}