body {
    margin: 0;
    font-family: "Pretendard", sans-serif;
    background: #0a0a0a;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .auth-container {
    background: #111;
    padding: 3rem;
    border-radius: 16px;
    width: 380px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
  }
  
  .logo {
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
  }
  
  .subtitle {
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 2rem;
  }
  
  .social-login button {
    width: 100%;
    padding: 0.9rem;
    margin-bottom: 0.75rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
  }
  
  .kakao { background: #fee500; color: #000; }
  .naver { background: #03c75a; color: #fff; }
  .google { background: #fff; color: #333; }
  .phone { background: #333; color: #fff; }
  
  .divider {
    margin: 1.5rem 0;
    color: #666;
    font-size: 0.9rem;
    position: relative;
  }
  .divider::before, .divider::after {
    content: "";
    position: absolute;
    width: 40%;
    height: 1px;
    background: #333;
    top: 50%;
  }
  .divider::before { left: 0; }
  .divider::after { right: 0; }
  
  .email-login{
    width:100%;
  }

  input {
    width: 90%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: none;
    background: #222;
    color: #fff;
  }
  
  .login-btn {
    width: 100%;
    padding: 0.9rem;
    border: none;
    background: #444;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
  }
  .login-btn:hover {
    background: #666;
  }
  
  .links {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
  }
  .links a {
    color: #999;
    text-decoration: none;
  }
  .links a:hover {
    color: #fff;
  }

  /* ============================
   아이디 찾기 / 비밀번호 찾기 공통
   ============================ */

/* 제목 간격 살짝 정리 */
.auth-container h1 {
  font-size: 22px;
  margin-bottom: 20px;
  text-align: center;
}

/* 결과 영역 */
#resultArea {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #f5f5f5;         /* 기본 글자색 */
}

#resultArea strong {
  color: #ffd66b;         /* 강조 색 (기존 포인트 컬러 톤에 맞춰서) */
}

/* 링크 영역 */
.auth-links {
  margin-top: 24px;
  font-size: 13px;
  text-align: center;
  color: #aaa;
}

.auth-links a {
  color: #ddd;
  text-decoration: none;
}

.auth-links a:hover {
  text-decoration: underline;
}

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

/* 폼 전체 */
#passwordResetForm {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 버튼 간격 */
#sendCodeBtn {
  margin-top: 8px;
}

/* 2단계 영역(코드 + 새 비번) */
#step2 {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* 2단계 라벨과 인풋 간격 */
#step2 label {
  margin-top: 8px;
}

/* 제출 버튼(비번 재설정) */
#step2 button[type="submit"] {
  margin-top: 14px;
}

/* 인풋 공통(혹시 로그인과 다를 경우 대비) */
#passwordResetForm input,
#findIdForm input {
  width: 100%;
  box-sizing: border-box;
}

/* 작은 안내/에러 메시지가 필요할 때 쓸 수 있는 클래스 */
.text-muted {
  font-size: 12px;
  color: #999;
}

.text-error {
  font-size: 13px;
  color: #ff6b6b;
}