form {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: auto;
}

form > * {
  margin-bottom: 15px;
}


input, select, textarea, button {
  font-size: 16px;
  padding: 12px;
  border: 1px solid #333;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
}

button {
  background-color: #f7631b;
  color: white;
  font-weight: bold;
  border: none;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #e5743d;
}

textarea {
  resize: vertical;
    
}

