.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.formWrapper {
  background-color: #fff;
  padding: 30px 80px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 1000px;
}

.title {
  margin-bottom: 12px;
  font-size: 24px;
  color: #333;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.formGroup {
  display: flex;
  align-items: center;
  gap: 18px;
}

.label {
  width: 100px;
  font-weight: 500;
  color: #444;
}

.input,
.textarea {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  transition: border 0.2s ease;
}

.input:focus,
.textarea:focus {
  border-color: #16266c;
  outline: none;
}

.textarea {
  resize: vertical;
  min-height: 100px;
}

.button {
  background-color: #16266c;
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #0056b3;
}
