/* === INPUT UMUM === */
input[type="text"],
input[type="password"],
input[type="date"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  background: #1d1f25;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  border-radius: 8px;
  transition: border 0.3s, box-shadow 0.3s;
}

/* === FOCUS === */
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border: 1px solid var(--highlight);
  box-shadow: 0 0 6px rgba(0, 191, 255, 0.3);
}

/* === PLACEHOLDER === */
::placeholder {
  color: var(--text-secondary);
  font-weight: 300;
}

/* === CHECKBOX === */
input[type="checkbox"] {
  accent-color: var(--highlight);
  width: 16px;
  height: 16px;
}

/* === LABEL === */
label {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
}
