/* contact form */

.contact-form {
  background-color: #eef5f3;
  padding: 4vw 5vw;
  margin-top: 7%;
}

.contact-form h3 {
  text-align: center;
  color: #5b9a8b;
  font-size: 1.8vw;
  font-weight: 500;
  margin-bottom: 4vw;
}

.input {
  display: flex;
  flex-direction: column;
  gap: 4vw;
}

.contact-btn {
  margin: 0 auto;
}

.basic-info {
  display: flex;
  justify-content: space-between;
}

input {
  width: 20vw;
  height: 3vw;
  border: 1px solid #eee;
}

.input-container label {
  color: #5b9a8b;
}

#message {
  width: 100%;
  height: 8vw;
  padding: 1vw 0 0 1vw;
  font-size: 1vw;
}

ul {
  list-style: none;
}

input[value="SUBMIT"] {
  font-size: 1.4vw;
}

.error {
  text-align: center;
  color: red;
  font-weight: 700;
}

.feedback {
  text-align: center;
  color: #5b9a8b;
  font-weight: 700;
}