/* =========================================
   Inputs – Label + Feld
   ========================================= */

.input-field {
  display: grid;
  gap: 6px;
}

.input-label {
  font-size: 13px;
  color: #cfcfcf;
}

.input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #555;
  background: rgb(30,30,30);
  color: #fff;
  font-size: 15px;
  outline: none;
}

.input:focus {
  border-color: orange;
  box-shadow: 0 0 0 3px rgba(255,165,0,0.15);
}