
input,
select,
textarea {
  border-radius: 12px;
  padding: 0.8rem 1rem;
  border: 1.5px solid #b2e2b2;
  font-size: 1.4rem;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
  width: 100%; 
  margin-bottom: 1.2rem; 
}

input:focus,
select:focus,
textarea:focus {
  border-color: #04d804;
  outline: none;
}

.form-container {
  max-width: 600px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #f0fff4;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.form-title {
  font-size: 3rem;
  color: rgb(4, 216, 4);
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 1.6rem;
  color: #555;
  margin-bottom: 2rem;
}

.btn-submit {
  margin-top: 2rem;
  background-color: rgb(4, 216, 4);
  color: white;
  border: none;
  padding: 1rem 3rem;
  font-size: 1.8rem;
  border-radius: 10px;
  cursor: pointer;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #2e8b57;
}
