body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: url("../img/fondo Login 2_1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */
  background-attachment: fixed;
  transition: all 0.5s ease-in;
}

.VideoFondo {
  position: fixed;
  width: 170%;
  height: 170%;
  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"],
select {
  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: #6c757d;
}

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: 16px;
  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: 325%;
    height: 700px;
    z-index: 0;
  }
}

@media (max-width: 1250px) {
  .VideoFondo {
    position: fixed;
    width: 325%;
    height: 960px;
    z-index: 0;
  }
}
