body {
  width: 100%;
}

.contact {
  width: 100%;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wrapper {
  max-width: 715px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
}

.wrapper header {
  font-size: 22px;
  font-weight: 600;
  padding: 0px 30px;
  padding-bottom: 20px;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
}

.c-tri1 {
  width: 0;
  height: 0;
  border-right: 50px solid #111410;
  border-bottom: 50px solid transparent;
}

.c-h1 {
  color: #fff;
  background: #111410;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
}

.c-tri2 {
  width: 0;
  height: 0;
  border-left: 50px solid #111410;
  border-bottom: 50px solid transparent;
}

.wrapper form {
  margin: 35px 30px;
}

.wrapper form.disabled {
  pointer-events: none;
  opacity: 0.7;
}

form .dbl-field {
  display: flex;
  margin-bottom: 25px;
  justify-content: space-between;
}

.dbl-field .field {
  height: 50px;
  display: flex;
  position: relative;
  width: calc(100% / 2 - 13px);
}

.dbl-field .field input {
  color: #000;
}

.wrapper form i {
  position: absolute;
  top: 50%;
  left: 18px;
  color: #ccc;
  font-size: 17px;
  pointer-events: none;
  transform: translateY(-50%);
}

form .field input,
form .message textarea {
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 18px 0 48px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.field input::placeholder,
.message textarea::placeholder {
  color: #ccc;
}

.field input:focus,
.message textarea:focus {
  padding-left: 47px;
  border: 2px solid #adff00;
}

.field input:focus~i,
.message textarea:focus~i {
  color: #000000;
}

form .message {
  position: relative;
}

form .message i {
  top: 30px;
  font-size: 20px;
}

form .message textarea {
  min-height: 130px;
  max-height: 230px;
  max-width: 100%;
  min-width: 100%;
  padding: 15px 20px 0 48px;
  color: #000;
}

form .message textarea::-webkit-scrollbar {
  width: 0px;
}

.message textarea:focus {
  padding-top: 14px;
}

form .button-area {
  margin: 25px 0;
  display: flex;
  align-items: center;
}

.button-area button {
  color: #fff;
  border: none;
  outline: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  padding: 13px 25px;
  background: #adff00;
  color: #000;
  transition: background 0.3s ease;
}

.button-area button:hover {
  background: #111410;
  color: #fff;
}

.button-area span {
  font-size: 17px;
  margin-left: 30px;
  display: none;
}