 
/* Basic styling for the form */

.form-container {
  max-width: 500px;
  margin: 0 auto;
}
.form-container input,
.form-container button {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border-radius: 10px;
  box-sizing: border-box;
}
.form-container button {
  background-color:#008080;
  color: white;
  border: none;
  cursor: pointer;
}
.form-container button:hover {
  background-color: #45a049;
}
.success-message {
  display: none; /* Ensure success message is hidden initially */
  color: green;
}