/* ===========================================
   DW Bülten — Dark Tema için Modern Dikey Form
   =========================================== */

.dwb-wrap {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  font-family: inherit;
}

.dwb-wrap h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
}

/* === FORM === */
.dwb-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* === INPUT === */
.dwb-input {
  display: block;
  width: 100%;
  height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 0 16px;
  font-size: 1rem;
  box-sizing: border-box;
  transition: all 0.25s ease;
  appearance: none;
  outline: none;
  line-height: normal;
}

.dwb-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.dwb-input:focus {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* === BUTON === */
.dwb-btn {
  width: 100%;
  height: 52px;
  border-radius: 9px;
  background: #00306e;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 48, 110, 0.3);
  transition: background 0.25s ease, transform 0.15s ease;
}

.dwb-btn:hover {
  background: #002d59;
  transform: translateY(-2px);
}

/* === MESAJ === */
.dwb-msg {
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.95rem;
  line-height: 1.4;
  text-align: center;
}

.dwb-msg.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fecaca;
}

.dwb-msg.success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #bbf7d0;
}

/* === HONEYPOT === */
.dwb-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* === MOBİL === */
@media (max-width: 480px) {
  .dwb-input,
  .dwb-btn {
    height: 48px;
    font-size: 0.95rem;
  }
}
