/* #############################
    CONTROLS BACKGROUND IMAGE HERE & WIDTH IN STYLE.CSS */
.container-body-total {
  background-image: linear-gradient(
      rgba(255, 253, 253, 0.1),
      rgba(255, 253, 253, 0.1)
    ),
    url(../images/design/Black-White-Calm-Summer-Morning-contrast-90-75.jpg);

  background-size: cover;
}

/* ##############################
    CONTACT KAS
   ##############################  */

.contact_kas_body_section {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #444;
}

H2 {
  margin: 2rem 0;
  font-size: 2rem;
}
input[type="text"] {
  outline: none;
  border-radius: 4px;
  padding: 6px;
  margin-bottom: 2rem;
  width: 100%;
}
textarea {
  outline: none;
  border-radius: 4px;
  padding: 6px;
  width: 100%;
}
label {
  font-size: 1.5rem;
}

input[name="send"] {
  /* background-color: #007f0e; */
  background-color: #60a160;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 2rem;
  border-radius: 10px;
  margin-top: 2rem;
  cursor: pointer;
}
input[name="send"]:link,
input[name="send"]:visited {
  box-shadow: none;
}
input[name="send"]:hover {
  background-color: #71be71;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.15);
}
input[name="send"]:active {
  /* box-shadow: 0 3px 2px rgba(0, 0, 0, 0.15); */
  box-shadow: none;
}
form label {
  font-size: 2rem;
}
.required-field {
  color: red;
  font-size: 1.5rem;
  font-weight: bold;
}
/* error message */
.submit_message {
  color: red;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-align: center;
}
.submit_thank_you_message {
  color: #007f0e;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-align: center;
}

@media (max-width: 600px) {
  .ContactUs-feedback-form {
    width: 100%;
    padding: 0 50px;
  }
}
