@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;700&display=swap");

html,
body {
  overflow-x: hidden !important;
  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  background-color: #0061ba;
  margin: 0px;

  background: url(../img/fondo_login.png) no-repeat left center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

a {
  color: #333;
}

a:hover,
a:active,
a:focus {
  outline: none;
  text-decoration: none;
  color: #999;
}

.caja_login {
  position: absolute;
  top: -400px;
  right: 90px;
  background-image: url(../img/caja_login.png);
  width: 327px;
  height: 294px;
  padding: 15px;
  transition: all 0.3s ease-in-out;

}

.formulario_email {
  border-radius: 0px;
  border: none;
  width: 100%;
  background-color: #007E8B;
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  padding: 10px;
  margin-top: 15px;
}

input::placeholder,
textarea::placeholder {
  color: #ffffff;
  opacity: 1;
  /* importante en Firefox */
}

.boton_login {
  background-color: #00407E;
  cursor: pointer;
  width: 100%;
  padding: 10px;
  color: #ffffff;
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.boton_login:hover {
  background-color: #0060bf;
}

.boton_registro {
  margin-top: 95px;
}

.textito {
  position: absolute;
  width: 100%;
  top: 210px;
  font-size: 13px;
  text-align: center;
  color: #ffffff;
}



.caja_registro {
  position: absolute;
  top: -1000px;
  right: 90px;
  width: 327px;
  transition: all 0.3s ease-in-out;
  border: none;
}

a {
  color: #ffffff;
  text-decoration: underline;
}

.caja_registro .fondo_color {
  padding: 15px;
  background-color: #00B3AD;
}

.caja_registro .titulo {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;

}

.caja_registro .titulo_peque {
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
  margin-top: -10px;

}

.caja_registro input {
  text-align: left;
  font-size: 16px;

}

.caja_registro label {
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;

}

.boton_volver {
  border-radius: 40px;
  background-color: #00407E;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  padding: 8px;
  width: 100%;
  margin: auto;
  max-width: 150px;
  margin-top: 8px;
  cursor: pointer;
}


.caja_zoom {
  position: absolute;
  background-color: #00B3AD;
  top: -700px;
  right: 90px;
  width: 327px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  padding: 20px;

}

.boton_zoom {
  background-color: #00407E;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  padding: 8px;
  width: 100%;
  margin-top: 8px;
  cursor: pointer;
}

.boton_salir {
  background-color: #0074e9;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  padding: 8px;
  width: 100%;
  margin-top: 8px;
  cursor: pointer;
}

.soporte_logos {
  display: none;
  width: 100%;
  margin-top: 190px;
  background-color: #ffffff;
  text-align: center;
  padding: 15px;
}

.soporte_logos img {
  max-width: 400px;
}


@media (max-width: 800px) {
  body {
    background-color: #e4e4e4 !important;
    background: url(../img/fondo_movil.png) no-repeat center top;
    background-size: auto;
  }

  .caja_login {
    position: relative;
    right: auto;
    width: 100%;
    max-width: 327px;
    margin: auto;
  }

  .soporte_logos {
    display: block;
    width: 100%;
    margin-top: 220px;
    background-color: #ffffff;
  }

  .caja_registro {
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #ffffff;
  }

  .caja_zoom {
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #ffffff;

  }

}