@charset "UTF-8";
/* Contact Us page CSS Document */

/* Form CSS */
* {
  box-sizing: border-box;
}
input[type=text], input[type=email], select, textarea {
  width: 100%;
  border: 1px solid #000000;
  border-radius: 4px;
  padding: 12px;
  resize: vertical;
}
label {
  padding: 12px 12px 12px 0;
  display: inline-block;
  font-size: 3vw;
}
input[type=submit] {
  background-color: #9A4FEB;
  border: none;
  border-radius: 4px;
  color: white;
  padding: 12px 20px;
  cursor: pointer;
  float: right;
}
input[type=submit]:hover {
  background-color: #45a049;
}
.container {
  border-radius: 5px;
  background-color: #BA88F1;
  padding: 20px;
}
.col-1st {
  float: left;
  width: 15%;
  margin-top: 6px;
  text-align: left;
}
.col-2nd {
  float: left;
  width: 85%;
  margin-top: 6px;
}
/* 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-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}

/* Class Elements  */

#form_div_data {
/*	text-align: center;
	margin: auto;
	width: 585px; */
}
