
* {
  box-sizing: border-box;
}

.form_container {
  border-radius: 30px;
  background-color:transparent;
  padding: 20px;
}

.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

*::placeholder {
  color: #081b3b;
}

input[type=text], input[type=tel], select, textarea {
  font-family:Roboto, sans-serif;
  background-color: #4ab4a7;
  width: 100%;
  padding: 12px;
  border: 1px solid #000;
  border-radius: 4px;
  resize: vertical;
}

input[type=submit] {
  background-color: #4ab4a7;
  font-size: 1.1rem;
  color: #081b3b;
  margin-top: 25px;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

textarea {
  height: 5rem;
}

input[type=submit]:hover {
  background-color: #289387;
}

label.required::after {
  content: " *";
}

@media screen and (max-width: 800px) {
  .col-25, .col-75 {
    width: 100%;
    margin-top: 0;
  }

  input[type=submit] {
    width: 50%;
  }

}