main {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

form {
  width: 100%;
  margin-bottom: 12%;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.inputs-container {
  width: 100%;

  display: flex;
  justify-content: space-around;
  margin-bottom: 8%;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #333;
  font-size: 0.8em;
  font-weight: 600;
  margin-bottom: 6px;
}

form button {
  background-color: #5ABA8D;
  color: #fff;
  font-size: 1.2em;
  font-weight: 700;
  cursor: pointer;
}

form button:hover {
  background-color: #fff;
  color: #5ABA8D;
}

main h2 {
  font-size: 3.5em;
  color: #2F9766;
}

main h2 span {
  font-size: 0.6em;
  margin-right: 50px;
  margin-left: 50px;
}