@import url('https://fonts.googleapis.com/css2?family=PT+Sans&display=swap');
html {
  box-sizing: border-box;
}
body {
    margin: 0;
    min-height: 100vh;
    font-family: PT Sans, sans-serif;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Video Background */

.video-background{
  position: fixed;
  width: 100vw;
  height: 100vh;
  right: 0; 
  bottom: 0;
}
video {
  position: absolute;
  object-fit: cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0px;
  height: 100vh;
}
.container{
  width: 500px;
  height: 730px;
  background-color: #ffffff;  
  border-radius: 10px;
  box-shadow: 10px 12px 30px 10px black;
  display: flex;
  align-items: center;
  flex-direction: column;
  z-index: 2;
}
form {
  width: 90%;
}
.form-group{
  height: 65px;
}
label{
  position: relative;
  bottom: 3px;
}
input{
  width: 100%;
  height: 34px;
  border-color: black;
  padding: 5px;
  border-radius: 5px;
  outline: none;
  box-sizing: border-box;
  transition: all 0.3s;
}
input:valid{
  border: 1px solid green;
}
input:invalid{
  border: 1px solid red;
}
button{
  cursor: pointer;
  width: 100%;
  height: 50px;
  background: black;
  color: white;
  border: none;
  font-family: PT Sans, sans-serif;
  font-size: 20px;
  letter-spacing: 3px;
  border-radius: 5px;
  margin-top: 5px;
}
button:hover{
  filter: brightness(200%);
  background: rgb(54, 53, 53);
}
button:focus {
  outline: none;
}
.message-container {
  width: 90%;
  border: 1px solid black;
  border-radius: 5px;
  margin-top: 18px;
  display: flex;
  justify-content: center;
  color: black;
}
