#FORM .text {
  margin-bottom: 4%;
}
#FORM .line {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4%;
  padding: 4%;
  background-color: #ece5e5;
}
#FORM .line p {
  margin-right: 2%;
}
#FORM .line a {
  display: block;
  margin-left: 2%;
  width: 16%;
}
#FORM .line a img {
  width: 100%;
  vertical-align: middle;
}
#FORM .contact-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
#FORM .contact-form .form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}
#FORM .contact-form .form-group input,
#FORM .contact-form .form-group textarea {
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
  font-family: inherit;
}
#FORM .contact-form .form-group input:focus,
#FORM .contact-form .form-group textarea:focus {
  border: 1px solid #474c52;
  box-shadow: 0 0 8px rgba(63, 71, 88, 0.2);
}
#FORM .contact-form .form-group textarea {
  resize: none;
}