html,body{
width:100%;
height:100%;
margin:auto;
overflow:hidden;
font-family: 'Arial';


}
.bg{
  background: rgb(34,193,195);
  background: linear-gradient(0deg, rgba(34,193,195,1) 0%, rgba(253,187,45,1) 100%);
  height: 100%;
  width: 100%;
}
.vmix-frame {
  width:100%;
  height: calc(100vh - 120px);
  display: block;
}

.clicker {
  width:150px;
  height:90px;
  display: flex-inline;
  justify-content: center;
}

.clickerdiv{
  float: center;
  margin: 0 auto;
}

#form{
    position: absolute;
    height: 200px;
    width: 400px;
    margin: -100px 0 0 -200px;
    top: 50%;
    left: 50%;
}

input[type=text] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
}

input:invalid {
  border: 2px solid red;
}

input:valid {
  border: 2px solid black;
}
input[type=submit] {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}

.button, input[type=reset] {
  background-color: rgba(253,187,45,0.2);
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}
.button{
  float: right;
}