body {
  font-family: "Open Sans", sans-serif;
  height: 100vh;
#  background: url("https://drive.google.com/file/d/1PezwwGVUGLJJ8rlAu2-Hq4bO8phREtyk") 50% fixed;
  background-size: cover;
  background: rgba(33,150,243, 0.85);

}
#video-background {
    /* Hacer que el contenedor de video ocupe todo el espacio */
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -100;
}

#video-background > video {
    /* Hacer que el video ocupe todo el espacio */
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}
.wrapper {
position: relative;
    z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 97%;
  min-height: 97%;
  padding: 20px;
  background: rgba(33,150,243, 0.85);
}

.wrapper2 {
position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  min-height: 100%;
  padding: 20px;
  background: rgba(33,150,243, 0.85);
}

.login {
  border-radius: 2px 2px 5px 5px;
  padding: 10px 20px 20px 20px;
  width: 90%;
  max-width: 320px;
  background: #ffffff;
  position: relative;
  padding-bottom: 80px;
  box-shadow: 0px 1px 5px rgba(0,0,0,0.3);
 animation: colorchange 20s infinite;
}

@keyframes colorchange {
  0%   {background: #000000;}
  25%  {background: #555fff;}
  50%  {background: #000000;}
  75%  {background: #555fff;}
  100% {background: #000000;}
}

.login input {
  display: block;
  padding: 15px 10px;
  margin-bottom: 10px;
  width: 90%;
  border: 1px solid #ddd;
  transition: border-width 0.2s ease;
  border-radius: 2px;
  color: #000;
}

.login button {
  width: 100%;
  height: 100%;
  padding: 10px 10px;
  background: #2196F3;
  color: #000;
  display: block;
  border: none;
  margin-top: 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  max-height: 60px;
  border: 0px solid rgba(0,0,0,0.1);
  border-radius: 0 0 2px 2px;
  transform: rotateZ(0deg);
  transition: all 0.1s ease-out;
  border-bottom-width: 7px;
}

.login a {
  font-size: 0.8em;
  color: #2196F3;
  text-decoration: none;
}

.login .title {
  color: #FFF;
  font-size: 1.2em;
  font-weight: bold;
  margin: 10px 0 30px 0;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

footer {
  display: block;
  padding-top: 50px;
  text-align: center;
  color: #ddd;
  font-weight: normal;
  text-shadow: 0px -1px 0px rgba(0,0,0,0.2);
  font-size: 0.8em;
}

footer a, footer a:link {
  color: #fff;
  text-decoration: none;
}

input[type="email"] {
  position: relative;
}

input[type="email"]::before {
  content: "\f007"; /* código unicode para el ícono de usuario de Font Awesome */
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

input[type="email"]:focus::before {
  opacity: 1;
}

