/* 🔹 비밀번호 재설정 폼 전체를 중앙 정렬 */
.woocommerce-ResetPassword.lost_reset_password {
  max-width: 420px;
  margin: 0 auto;
  padding: 40px 30px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  font-size: var(--everythings-font-size);
  line-height: 1.6;
}

/* 🔹 안내문 텍스트 */
.woocommerce-ResetPassword.lost_reset_password > p:first-of-type {
  text-align: center;
  font-size: 15px;
  margin-bottom: 30px;
  color: #333;
}

/* ✅ 핵심 수정: 부모 <p>를 block으로 확장 */
.woocommerce-ResetPassword .woocommerce-form-row {
  display: block !important;
  width: 100% !important;
  box-sizing: border-box;
  margin-bottom: 20px;
}

/* 🔹 입력 필드 스타일 */
.woocommerce-ResetPassword input[type="text"] {
  height: 44px !important;
  padding: 8px 16px !important;
  font-size: 0.875rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* 🔹 버튼 스타일 */
.woocommerce-ResetPassword button[type="submit"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
}
