.centerContainer {
  max-width: 560px;
  margin: 0 auto;
  padding: 1.25rem;
  box-sizing: border-box;
}

#form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

#form label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

input[type="text"],
textarea,
select {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
  background: #fff;
  color: #222;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input[type="text"]:focus,
textarea:focus,
select:focus {
  border-color: #1a5fd0;
  box-shadow: 0 0 0 3px rgba(45,127,249,0.06);
}

textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.35;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}


@media (max-width: 420px) {
  .centerContainer {
    padding: 1rem;
    margin: 0 0.6rem;
  }

  textarea {
    min-height: 100px;
  }
}