#content{
display:flex;
    justify-content: center;

}
form {
  background-color: #fff;
  padding: 2rem;
  margin-top: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
}

h1 {
  text-align: center;
  color: #333;
}

label {
  margin-bottom: 1rem;
  font-size: 1rem;
}
input, select, textarea {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  font-size: 1rem;
}

input, select, textarea {
  padding: 0.6rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  transition: border-color 0.3s;
}

input:focus, select:focus, textarea:focus {
  border-color: #4c9aff;
  outline: none;
}

button {
  width: 100%;
  padding: 0.8rem;
  background-color: #1d72b8;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #155d8b;
}

.g-recaptcha {
  margin-bottom: 1rem;
}
