* {
  box-sizing: border-box;
}

input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  resize: vertical;
  background: #f5f5f5;
}

input[type=password], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  resize: vertical;
  background: #f5f5f5;
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

.row-submit {
  margin-top: 3rem;
  text-align: center;
}

input[type=submit] {
  margin: auto;
  cursor: pointer;
  border: none;
  background-color: rgba(0, 161, 121, 0.743);
  display: block;
  text-align: center;
  text-decoration: none;
  width: 50%;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding-top: 1rem;
  padding-bottom: 1rem;
  

  border-radius: 50px;

  letter-spacing: 1px;
  font-size: 1rem;
  font-weight: 100;

}

input[type=submit]:hover {
  background-color: rgb(0, 161, 121);
    color: rgb(255, 255, 255);
    transition-duration: 0.3s;
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
    border-color: rgb(0, 161, 121);
}

.container {
  background: #fff;
  box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
  border-radius: 10px;
  margin-top: 3rem;
  border-radius: 30px;
  padding: 40px;
  margin: auto;
  width: 50%;
}

.col-25 {
  float: left;
  width: 8vw;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  font-size: 1rem;
  font-weight: 100;
}
#myVideo {
  position: fixed;
  aspect-ratio: 16/9;
  object-fit: contain;
  overflow: clip;
  overflow-clip-margin: content-box;
  z-index: -1;
  right: 0;
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
}
.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 400px;
}

/* 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: 966px) {
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
  .container {
    width: 100%;
  }
}
