/*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3VzdG9tLmNzcyIsInNvdXJjZXMiOlsiY3VzdG9tLnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*# 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,
     
    ),
    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.95);
  padding: 80px 40px 40px; /* Aumentamos el padding */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  max-width: 600px; /* Aumentamos el ancho máximo */
  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: #0099ff;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;

  /*INCREMENTADO*/
  border-radius: 25px;
  background-size: 200%;
  font-size: 1.2rem;
  
}

.login-form button:hover {
  background-position: right;
    background: #142e3d;
    color: wheat;
}

.logo {
  position: absolute;
  top: -40px; /* Más arriba para sobresalir un poco más */
  left: 50%;
  transform: translateX(-50%);
  width: 80px; /* Aumentado para que se vea más definido */
  height: 80px;
  background: url("../img/logo_empresa.png") no-repeat center;
  background-size: cover;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border: 3px solid #fff; /* Bordes más limpios */
  z-index: 10; /* Asegura que esté encima del formulario */
}


.login-form h2 {
  margin-top: 5px; /*reduce el espacio entre logo y texto*/
  text-align: center;
  margin-bottom: 30px;
  color: #131313;
  font-size: 30px;
  letter-spacing: 2px; /* Ajusta el valor según necesites */
}


.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;
  }
}

/*INCREMENTADO*/

* {
  box-sizing: border-box;
}

.input-group {
  position: relative;
  margin-bottom: 30px;
}

.input-group input {
  width: 100%;
      padding: 12px 45px 12px 40px;
      border: none;
      border-bottom: 2px solid #ccc;
      background: transparent;
      outline: none;
      font-size: 16px;
      border-radius: 0;
      display: block;
      z-index: 1;
}

.input-group::after {
  content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%) scaleX(0);
      height: 2px;
      width: 100%;
      background-color: #0099ff;
      transition: transform 0.8s ease;
    }

    .input-group:focus-within::after {
      transform: translateX(-50%) scaleX(1);
    }


.icon-left {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #0099ff;
  font-size: 18px;
  pointer-events: none;
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: #021e31;
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
}

.social-icons-box {
  margin-top: 5px; /* o incluso menos, como 10px */
  text-align: center;
}

.social-icon {
  display: inline-block;
  width: 45px;
  height: 45px;
  margin: 0 8px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
  background-color: #ccc; /* color base si falta alguno */
}

.social-icon i {
  color: white; /* <- blanco para los íconos */
  font-size: 22px;
  line-height: 45px;
}

/* Hover animación */
.social-icon:hover {
  transform: scale(1.1);
}

/* Colores de cada red */
.facebook {
  background-color: #1877F2;
}

.whatsapp {
  background-color: #25D366;
}

.youtube {
  background-color: #FF0000;
}

.tiktok {
  background-color: #000000;
}


