

.form-container {
  background-color: rgb(80, 171, 181);
  padding: 70px;
 
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h2 {
  margin-bottom: 20px;
  color: #ffffff;
  text-align: center;
}

label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #ffffff;
}

input, select, textarea, button {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-right: 15px;
  border-radius: 5px;
  border: 1px solid #070352;
  box-sizing: border-box;
  font-size: 14px;
}

textarea {
  resize: vertical;
}

button {
  margin-top: 20px;
  background-color: #2e1ebd;
  color: white;
  font-weight: bold;
  cursor: pointer;
  border: none;
}

button:hover {
  background-color: #218838;
}
