/*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3VzdG9tLmNzcyIsInNvdXJjZXMiOlsiY3VzdG9tLnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9 */

/*# sourceMappingURL=custom.css.map */
#previewImagen {
  border-radius: 50%;
  position: absolute;
  float: inline-start;
}
.login-page {
  /* Establece una imagen de fondo por defecto */
  background-image: url("../img/fondo-pc.jpg");

  /* Establece un degradado lineal como fondo */
  background: linear-gradient(
      to bottom,
      rgba(212, 214, 211, 0.8),
      rgba(0, 35, 51, 0.8)
    ),
    url("../img/fondo-pc.jpg");
  /* Establece una altura mínima para que el contenido se muestre correctamente */
  min-height: 100vh;
  margin: 0;
  padding: 0 20px 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;

  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}

.login-form {
  background-color: rgba(255, 255, 255, 0.9);
  /* Fondo del formulario con opacidad */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  /* Sombra para dar profundidad al formulario */
  max-width: 400px;
  width: 100%;
  position: relative;
  animation: fadeIn 1s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Estilo para el resto del contenido del formulario */
.login-form input[type="text"],
.login-form input[type="password"],
.login-form button {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.login-form button {
  background-color: #353c48;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
}

.login-form button:hover {
  background-color: #1b1c1f;
}

.logo {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: url("../img/logo.png") no-repeat center;
  background-size: cover;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.login-form h2 {
  text-align: center;
  margin-bottom: 30px;
}

.tagline {
  text-align: center;
  color: #777;
}

/* Estilos para pantallas pequeñas (móviles) */
@media screen and (max-width: 768px) {
  .login-page {
    /* Cambia la imagen de fondo para pantallas pequeñas */
    background: linear-gradient(
      to bottom,
      rgba(212, 214, 211, 0.8),
      rgba(0, 35, 51, 0.8)
    );
    background-image: url("../img/fondo-celular.jpg");
    min-height: 100vh;
    margin: 0;
    padding: 0 20px 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;

    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
  }
}
