@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);

body { background: rgb(35, 33, 33);
    margin: 0;
    padding: 0;
}
.video-container {
    position: relative;
}

.vid {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

form {
    max-width: 420px;
    margin: 50px auto;
    position: relative;
    z-index: 1;
}

.feedback-input {
  color:white;
  font-family: Helvetica, Arial, sans-serif;
  font-weight:500;
  font-size: 18px;
  border-radius: 5px;
  line-height: 22px;
  background-color: transparent;
  border:2px solid #FF10F0;
  transition: all 0.3s;
  padding: 13px;
  margin-bottom: 15px;
  width:100%;
  box-sizing: border-box;
  outline:0;
}

.feedback-input:focus { border:2px solid #FF10F0; }

textarea {
  height: 150px;
  line-height: 150%;
  resize:vertical;
}

[type="submit"] {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  width: 100%;
  background: #FF10F0;
  border-radius:5px;
  border:0;
  cursor:pointer;
  color:white;
  font-size:24px;
  padding-top:10px;
  padding-bottom:10px;
  transition: all 0.3s;
  margin-top:-4px;
  font-weight:700;
}
[type="submit"]:hover { background: #ff00ee; }

#vid{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}
@media (min-aspect-ratio:16/9)
{
    .vid{
        width:100%;
        height:auto ;
    }
}
@media (max-aspect-ratio:16/9)
{
    .vid{
        width:auto;
        height:100%;
    }
}