main {
  width: 100%;
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Poppins", sans-serif;
}
main h1 {
  font-size: 3rem;
  font-weight: bold;
}
main h2 {
  font-size: 3rem;
}
main h3 {
  font-size: 2rem;
}
main h4 {
  font-size: 1.5rem;
}

section {
  display: flex;
  flex-direction: column;
  width: 90%;
  justify-content: space-around;
  gap: 7rem;
  margin: 5rem auto 5rem auto;
}

.forms {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  font-size: 1.5rem;
}

.forms ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  list-style-type: disc;
  gap: 3rem;
}
.forms li {
  width: 30rem;
}
.forms li:hover {
  text-decoration: underline;
}

.form-container {
  display: flex;
  margin: 3rem auto 0 auto;
  align-items: center;
  justify-content: start;
  width: 25%;
  padding: 1rem;
   border-radius: 1rem;
    background-color: #9ce1da;
  -webkit-box-shadow: 2px 3px 25px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 2px 3px 25px 0px rgba(0,0,0,0.75);
box-shadow: 2px 3px 25px 0px rgba(0,0,0,0.75);
}
form {
  width: 60%;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  gap: 0.5rem;
}
form p {
  font-size: 1.2rem;
}
form input {
  border: 0.1rem solid black;
  border-radius: 1rem;
  height: 2.5rem;
}
form select {
  border: 0.1rem solid black;
  border-radius: 1rem;
  height: 2.5rem;
}
form textarea {
  border-radius: 1rem;
}
label {
  width: 100%;
  display: flex;
  justify-content: space-around;
}
.form-btn {
  width: 40%;
}
.form-btn:hover {
  cursor: pointer;
}
