main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

h1 {
  margin-bottom: 50px;
}

form {
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: baseline;
  width: 90%;
  margin-bottom: 80px;
}

.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;

  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  border: none;
  background-color: #f1f3f5;
  font-size: 14px;
  border-radius: 5px;

  padding: 10px 10px;
  margin-top: 5px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
}

.indication {
  font-size: 12px;
  color: gray;

  padding-right: 50px;
}

.anchor-margin {
  display: inline-block;
  font-size: 12px;

  margin-top: 8px;
}

.contact-button {
  border-radius: 5px;
  background-color: #185AAC;
  border: none;
  font-size: 14px;
  color: white;
  font-weight: 700;
  cursor: pointer;

  padding: 8px 12px;

  transition: background-color 0.2s ease;
}

.contact-button:hover {
  background-color: #74C7E2;
}