
@font-face {
    font-family: openFont;
    src: url(fonts/georgia.ttf);
}

html {
    height: 100%;
}

body {
    font-family: openFont;
    height: 100%;
    overflow: hidden;
    background-color: #eaeaea;
    margin: 0;
}

.error {
    font-size: 12px;
}


#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}

/* Add some content at the bottom of the video/page */
.overlay {
  background: #007cba;
  color: #f1f1f1;
  width: 35%;
  padding: 20px;
  border-radius: 14px;
  min-height: 220px;
  margin-left: auto;
    margin-right: auto;
}

.content {
    display: flex;
    flex-direction: column;
}

.wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-img {
    text-align: center;
    margin-bottom: 20px;
}

.logo{
    width: 35%;
}


input[type=email], input[type=text] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type=email], input[type=text]:focus-visible {
  outline: none;
}

input[type=submit] {
  width: 100%;
  
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background-color: #ccc ;
}

input[disabled] {
  cursor: default;
  color: black;
  opacity: 0.5;
}

input[disabled]:hover {
  cursor: default;
  background-color: #ccc !important;
  opacity: 0.5;
}

input[type=submit]:hover {
  background-color: #005a87;
}

.email {
    margin-top: 20px;
}

#submit-response {
  align-self: center;
}

.hidden {
  display: none;
}


@media only screen and (max-width: 480px) {
  .overlay {
    width: 55%;
  }
}