/* ../assets/css/contact.css */

body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #697367;
  color: #fff;
}

* {
  box-sizing: border-box;
}

.wrapper {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: 100px auto 0;
}

.contact {
  display: flex;
  flex-direction: column;
  width: 60%;
  margin-top: 20px;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 5px 5px #464d45;
  background: #464d457e;
}

.head {
  background: #464d45;
  margin: -20px -20px 20px;
  padding: 20px;
  border-bottom: 1px solid #697367;
}

.head div {
  display: flex;
  justify-content: center;
}

.contact-group:last-child {
  padding-bottom: 0;
}

.contact-formulier {
  display: flex;
  flex-direction: column;
}

.contact-formulier div {
  display: flex;
  flex-direction: column;
}

.label {
  font-weight: 600;
  margin: 1px auto;
}

.contact-group + .contact-group {
  padding-top: 10px;
  border-top: 1px solid #697367;
}

input,
textarea {
  width: 50%;
  padding: 4px;
  margin: 10px auto;
  border: 1px solid #464d457e;
  border-radius: 5px;
}

#sendBtn {
  width: 50%;
  margin: 10px auto;
  padding: 4px 6px;
  cursor: pointer;
  background-color: #464d45;
  border: none;
  border-radius: 4px;
  color: #fff;
}

#sendBtn:hover {
  background: #323631;
}

@media (max-width: 768px) {
  .head {
    display: none;
  }

  .content-group {
    display: flex;
    flex-direction: column;
  }

  input,
  textarea,
  #sendBtn {
    width: 100%;
  }
}

#notificatie {
  margin: 10px auto;
  font-size: 1.6em;
}

.success {
  color: green;
}

.error {
  color: red;
}
