body{
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  /*background:url('../images/fondo Login.png');*/
  background-size:cover;
  background-position:center;
}

.VideoFondo{
  position: fixed;
  width: 120%;
  height: 120%;
  z-index: 0;

}

.window{
  width:400px;
  height:440px;
  padding:40px;
  text-align:center;
  border:1px solid white;
  border-radius:20px;  
  backdrop-filter:blur(5px) brightness(120%);  
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  color:white;
}

form{
  width:100%;
}
input[type="email"]:focus, input[type="password"]:focus{
  background:#00000040;
  box-shadow:none;
  border:1px solid white;
}

input[type="text"], input[type="password"] {
  width: 100%;
  border: 2px solid #aaa;
  border-radius: 4px;
  margin: 8px 0;
  outline: none;
  padding: 8px;
  box-sizing: border-box;
  transition: 0.3s;
  background:transparent;
  color:white;
}

input[type="text"]:focus, input[type="password"]:focus {
  border-color: dodgerBlue;
  box-shadow: 0 0 8px 0 dodgerBlue;
  background:transparent;
}

.inputWithIcon input[type="text"], input[type="password"] {
  padding-left: 40px;
}

.inputWithIcon {
  position: relative;
}

.inputWithIcon i {
  position: absolute;
  left: 0;
  top: 11px;
  padding: 11px 14px;
  color: #aaa;
  transition: 0.3s;
}

.inputWithIcon input[type="text"]:focus + i {
  color: dodgerBlue;
}

.inputWithIcon input[type="password"]:focus + i {
  color: dodgerBlue;
}

.inputWithIcon.inputIconBg i {
  background-color: #aaa;
  /*color: #fff;*/
  padding: 9px 4px;
  border-radius: 4px 0 0 4px;
}

.inputWithIcon.inputIconBg input[type="text"]:focus + i {
  color: #fff;
  background-color: dodgerBlue;
}

.inputWithIcon.inputIconBg input[type="password"]:focus + i {
  color: #fff;
  background-color: dodgerBlue;
}

input[type="submit"]{
  width:100%;
  border-radius:8px;
  text-transform:uppercase;
  font-weight:bold;
  font-size:14px;
}

@media (max-width: 480px) {
  .VideoFondo {
    position: fixed;
    width: 410%;
    height: 820px;
    z-index: 0;
  }
}

@media (max-width: 1250px) {
  .VideoFondo {
    position: fixed;
    width: 325%;
    height: 960px;
    z-index: 0;
  }
}