* {
  box-sizing: border-box;
}

.container-01 {
  position: relative;
  border: none;
  outline: none;
  background: linear-gradient(rgb(0, 0, 0, 0.9), rgb(0, 0, 0, 0.7), rgb(0, 0, 0, 0.9)), url(../images/universal-header.webp);
  padding: 20px 0 30px 0;
} 

input, select, textarea,
.btn-01 {
  width: 100%;
  padding: 12px;
  border: none;
  outline: none;
  border-radius: 4px;
  margin: 5px 0;
  display: inline-block;
  font-size: 15px;
  line-height: 20px;
  background-color: rgba(255, 255, 255, 0.6);
  color: #000;
  text-decoration: none;
}

::placeholder{
	color: #000;
}

textarea{
	height: 120px;
}

input:focus, select:focus, textarea:focus{
  outline: 1px solid red;
}

.btn-01 {
  background-color: #4CAF50;
  color: white;
  cursor: pointer;
}

.btn-01:hover {
  background-color: #45a049;
  opacity: 1;
}

.btn-01:focus{
  outline: none;
}

.hero-text{
	margin: 30px;
}

.hero-text .p1-01{
	font-size: 28px;
	font-weight: 600;
}

.hero-form{
  float: right;
  margin: 30px;
  max-width: 320px;
  padding: 10px;
  border: 1px solid;
  border-radius: 4px;
  background-color: rgba(200, 200, 200, 0.8);
}

.col-01 {
  float: left;
  width: 50%;
  margin: auto;
  padding: 0 50px;
  margin-top: 6px;
}

.col-01 h2{
	color: #fff;
}

.col-01 p{
	color: #fff;
}

.row-01:after {
  content: "";
  display: table;
  clear: both;
}

.vl-01 {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  border: 2px solid #ddd;
  height: 400px;
}

@media screen and (max-width: 768px) {
  .col-01 {
    width: 100%;
    margin-top: 0;
    padding: 0;
  }
  .vl-01 {
    display: none;
  }
  .hero-form{
  float: left;
}
}

div.form-message {
  font-size: 18px;
  margin-top: 15px;
  margin-bottom: 0;
  text-align: center;
}
div.success {
  color: green;
}
div.error {
  color: black;
}