body {
  background: #E5E5E5;
}

.header {
  display: none !important;
}

.contents {
  font-family: "Inter", serif !important;
  padding-top: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 0 40px;
}

.contact_wrapper {
  max-width: 580px;
  width: 100%;
  min-width: 300px;
  background: #fff;
}

form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 82px 15% 56px;
}

.form_control {
  margin-bottom: 16px;
}

.form_control, input, textarea {
  width: 100%;
}

h4 {
  margin-bottom: 6px;
  font-weight: 550;
  font-size: 14px;
}

input, textarea {
  background: #FCFCFD;
  padding: 11px 12px;
  border: 1px solid #CFD0D7;
  border-radius: 2px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(26, 32, 61, 0.3);
}

textarea {
  height: 124px;
  font-family: "Inter", serif !important;
}

button {
  align-self: flex-start;
  background: #000;
  padding: 11px 52px;
  border-radius: 2px;
  cursor: pointer;
  color: #FEFEFE;
  transition: .5s;
  border: transparent;
  font-size: 14px;
}

button:hover {
  background: seagreen;
}

/* if input has error */

.error_border {
  border: 1px solid red !important;
}

p {
  margin-top: 6px;
  color: red;
}