* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
}

.ocultar {
  display: none;
}

body {
  background: linear-gradient(135deg, #000000, #2453ee);
  min-height: 100vh;
  margin: 0;
}

header h1 {
  text-align: center;
  padding: 5px 0px;
  margin-top: 0px;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  width: 100%;
}

header {
  width: 100%;
  background: linear-gradient(135deg, #000000, #163192);
  box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.3);
}

nav {
  width: 100%;
}

.ulDerecha a,
.ulIzquierda a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}

.ulDerecha {
  position: absolute;
  top: 0;
  right: 0;
  list-style: none;
  padding: 5px;
  display: flex;
  gap: 20px;
}

.ulDerecha p {
  color: rgb(255, 255, 255);
}

.ulIzquierda {
  position: absolute;
  top: 0;
  left: 0;
  list-style: none;
  padding: 5px;
}

.ulIzquierda i {
  font-size: 35px;
  color: rgb(255, 255, 255);
}
.ulIzquierda i:hover,
.ulDerecha a:hover {
  color: #3b97ff;
}

.filtros {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.filtros select,
.filtros input,
.filtros button,
.filtros p {
  padding: 8px;
  font-size: 18px;
  border-radius: 5px;
  max-width: 300px;
  margin: 5px auto;
  flex: 1;
}

.filtros select:hover,
.filtros input:hover {
  box-shadow: 0 0 3px 1px blue;
}

.filtros p {
  color: rgb(255, 255, 255);
  text-align: center;
  font-size: x-large;
}

.loader {
  position: fixed;
  top: 50%;
  left: 45%;
  border: 8px solid #f3f3f3;
  border-radius: 50%;
  border-top: 8px solid #3498db;
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
}

#cambiarContrasena {
  cursor: pointer;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#loader {
  position: fixed;
  top: 0;

  background-color: rgba(255, 255, 255, 0);
  width: 100%;
  height: 100%;
}

.transicionCarga {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.transicionCarga.visible {
  opacity: 1.5;
  transform: translateY(0);
}

@media screen and (max-width: 900px) {
  .ocultarMovil {
    display: none;
  }
  header h1 {
    margin-top: 40px;
    font-size: 25px;
  }
  .liDescarga {
    display: none;
  }
  .filtros {
    flex-wrap: wrap;
  }
  .filtros select,
  .filtros input,
  .filtros button,
  .filtros p {
    padding: 8px;
    font-size: 12px;
    border-radius: 5px;
  }

  /*////////////////Tel Horizontal//////////////////////////*/
  @media screen and (orientation: landscape) {
  }
  /*////////////////Tel Vertical//////////////////////////*/
  @media screen and (orientation: portrait) {
  }
}
