#contact-section {
  min-height: 85vh;
  scroll-margin-top: 100px;
}

#contact-section > h2 {
  text-align: center;
}

.contact-content {
  display: flex;
  flex-direction: row;
  gap: 3em;
}

.contact-left,
.contact-right {
  min-height: 400px;
}

.contact-left {
  border-radius: 10px;
  padding: 1em;
  display: flex;
  flex-direction: column;
  gap: 1em;
  flex: 1;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.form-row {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 0.5em;
}

input,
textarea {
  padding: 0.5em;
  border-radius: 10px;
}

textarea {
  resize: none;
}

input[type="submit"] {
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: rgb(182, 183, 255);
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 1em;
  flex: 1;
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 1em;
  border-radius: 10px;
}

.socials {
  display: flex;
  flex-direction: row;
  gap: 1em;
  list-style-type: none;
}

.error {
  color: red;
  margin-top: 1em;
}
