/* =========================
   DB SECTION – DARK THEME (FINAL)
========================= */

.db {
  background: #0b0b0b;
  padding: 56px 22px 72px;
  max-width: 520px;
  font-family: 'Pretendard', sans-serif;
  color: #ffffff;
}

/* =========================
   TITLE
========================= */

.db h2 {
  text-align: center;
  font-size: 27px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #ffffff;
}

.db-sub {
  text-align: center;
  font-size: 13px;
  color: #9a9a9a;
  margin-bottom: 26px;
}

/* =========================
   INPUT WRAP (외부 배경 제거)
========================= */

.db .input {
  width: 100%;
  margin-bottom: 10px; /* 🔥 간격 최소화 */
  position: relative;
  background: none;
  padding: 0;
  border: none;
}

/* =========================
   INPUT / SELECT
========================= */

.db input,
.db select {
  width: 100%;
  padding: 14px 16px;
  font-size: 14.5px;
  border-radius: 12px;
  border: 1.5px solid #69cb00;     /* ✅ 테두리 포인트 */
  background: #111111;
  color: #ffffff;
  outline: none;
  appearance: none;
  transition: all 0.25s ease;
}

/* placeholder */
.db input::placeholder {
  color: #666666;
}

/* focus */
.db input:focus,
.db select:focus {
  background: #0f0f0f;
  box-shadow: 0 0 0 2px rgba(105, 203, 0, 0.35);
}

/* =========================
   SELECT DROPDOWN DESIGN
========================= */

.db select {
  cursor: pointer;
}

/* 옵션 리스트 */
.db select option {
  background-color: #0f0f0f;
  color: #ffffff;
  padding: 12px;
  border-radius: 10px;
}

/* hover 느낌 (지원되는 브라우저 한정) */
.db select option:hover {
  background-color: #1a1a1a;
}


/* =========================
   DATE INPUT
========================= */

.db input[type="date"] {
  color-scheme: dark;
}

/* =========================
   SUBMIT BUTTON
========================= */

.db .submit {
  width: 100%;
  margin-top: 22px;
  height: 52px;
  display: flex;
  align-items: center;      /* ✅ 수직 중앙 */
  justify-content: center;  /* ✅ 수평 중앙 */
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #69cb00, #8ee600);
  color: #000000;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}


.db .submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(105, 203, 0, 0.45);
}

/* =========================
   MOBILE TOUCH FIX
========================= */

.db input,
.db select,
.db button {
  -webkit-tap-highlight-color: transparent;
}
