
/* Style the container */
div.form_container {
  border:1px solid silver;
  border-radius: 10px;
  background-color: #f2f2f2;
  padding: 5px;  
}

#frm_contact_us {
  xborder:1px solid red;
  width:90%;
  margin:auto;
  padding:5px;
}

/* Style inputs, select elements and textareas */
input[type=text], select, textarea{
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
}

/* Style the label to display next to the inputs */
label {
  padding: 4px 4px 4px 0;
  display: inline-block;
  font-weight:500;
}

/* Style the submit button */
input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 4px 4px;
  border: 1px solid blue;
  border-radius: 5px;
  cursor: pointer;
  float: right;
  margin-top:10px;
}

.btn-primary {
	margin-top:10px;
	radius:6px !important;
}


/* Floating column for labels */
.col-label {
  float: left;
  width: 20%;
  margin-top: 8px;
  margin-bottom:0px;
}

/* Floating column for inputs */
.col-field {
  float: left;
  width: 80%;
  margin-top: 8px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .col-label, .col-field, input[type=submit] {
    width: 100%;
    margin-top: 10px;
  }
}

#response_new {
	margin-top:20px;
}