/* BODY */
body {
  margin: 0;
  font-family: sans-serif;
  background-color: #f3f4f6;
  padding-top: 70px;
}

/* MAIN WRAPPER */
.contact-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

@media (min-width: 768px) {
  .contact-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    padding: 64px;
  }
}

/* FORM */
.contact-form {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* TITLES */
h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 6px;
}

.contact-text {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 6px;
}

/* INPUT FIELDS */
.input {
  width: 100%;
  height: 48px;
  padding: 0 20px;
  background: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  outline: none;
}

.textarea {
  width: 100%;
  height: 150px;
  padding: 16px 20px;
  background: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  resize: none;
  font-weight: 500;
  outline: none;
}

/* Outline */
.input:focus,
.textarea:focus {
  outline: 2px solid #5ab29f;
}

/* knop */
.verstuurknop {
  width: fit-content;
  padding: 12px 20px;
  background: #5ab29f;
  color: white;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  margin-top: 16px;
  transition: 0.3s;
}

.verstuurknop:hover {
  background: #4a9c8b;
  transform: scale(1.05);
}