/* ───────────── find-password.css ───────────── */

.auth-container {
  margin-top: 60px;
  width: 20%;
}

.section-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}

/* ─────────── 비밀번호 찾기 폼 ─────────── */

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.auth-form input {
  padding: 12px 16px;
  font-size: 1rem;
  border: 1px solid #555;
  border-radius: 6px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-form input:focus {
  outline: none;
  border-color: #e71909;
}

/* 버튼 (제출) */
.auth-form button[type="submit"] {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: #e71909;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}

.auth-form button[type="submit"]:hover {
  background-color: #c91608;
}

.auth-form button[type="submit"]:active {
  transform: translateY(1px);
}

/* 인증요청/인증확인 버튼 */
.btn-secondary {
  background-color: #444;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  padding: 0 12px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-secondary:hover {
  background-color: #333;
}

.btn-secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* 메시지 */
.msg {
  font-size: 0.85rem;
  min-height: 1.2em;
  color: #666;
}
.msg.error {
  color: #e71909;
}
.msg.success {
  color: #2e7d32;
}

.timer {
  font-size: 0.8rem;
  color: #888;
  margin-top: -6px;
}

/* ─────────── 가로 배치 (휴대폰 + 버튼, 인증번호 + 버튼) ─────────── */
.row-inline {
  display: flex;
  gap: 8px;
}
.row-inline input {
  flex: 1;
}

/* ─────────── 모바일 반응형 ─────────── */
@media (max-width: 480px) {
  .auth-container {
    margin: 40px 20px;
    width: 100%;
  }
  .auth-form {
    gap: 10px;
  }

  .auth-form input,
  .auth-form button[type="submit"],
  .btn-secondary {
    font-size: 0.9rem;
    padding: 10px 14px;
  }

  .btn-secondary {
    font-size: 0.8rem;
    padding: 8px;
  }
}
