.fondo {
    background-image: url('../home/img/img_principal.jpg');
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
} 

.fondo_almacen {
  background-image: url('../home/img/fondo_almacen.jpg');
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
}

.fondo_sia {
  background-image: url('../home/img/fondo_sia.jpg');
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
}

.fondo_fabricacion {
  background-image: url('../home/img/fondo_fabricacion.jpg');
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
}

.mdla {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #161212bd;
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s;
  --transform: translateY(-100vh);
  --transition: transform .8s;
  overflow-y: auto; /* Permitir desplazamiento en el modal */
}

.mdla--show {
  opacity: 1;
  pointer-events: unset;
  transition: opacity .6s;
  --transform: translateY(0);
}

.modal_container {
  margin: auto;
  width: 90%;
  max-width: 400px; /* Ajusta el valor según tus necesidades */
  max-height: 90vh;
  background-color: rgba(255, 255, 255, 0.801);
  border-radius: 6px;
  padding: 3em 2.5em;
  display: grid;
  gap: 1em;
  place-items: center;
  grid-auto-columns: 100%;
  transform: var(--transform);
  transition: var(--transition);
  overflow-y: auto;
}


.modal__title {
    font-size: 2.5rem;
}

.modal__img {
    width: 90%;
    max-width: 300px;
}

.modal__close {
    transition: background-color .3s;
}



/*login*/

.login-container {
  max-width: 300px;
  margin: 0 auto;
  padding: 20px;
  border: 2px solid #e7e1e1;
  border-radius: 4px;
}

  
  .form-group {
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  label {
    display: block;
  }
  
  .button {
    width: 100%;
    cursor: pointer;
  }
  
  body {
    margin: 0;
    padding: 0;
    height: 100%;
}
footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer div:first-child {
    flex-grow: 1; 
}
footer div:last-child {
    text-align: center; 
}
footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}
footer a i {
    font-size: 24px; 
}
footer .icono-web {
    font-size: 24px; 
    color: #fff; 
    margin-right: 10px; 
}

.container__admin,
.container__manufacturing,
.container__industrial,
.container__warehouse {
  display: flex;
  justify-content: center;
  padding: 5rem;
}
.card__admin,
.card__manufacturing,
.card__industrial,
.card__warehouse {
  border: 1px solid #ccc;
  padding: 20px;
  max-width: 600px;
  width: 100%;
}

.label-admin,
.label-manufacturing,
.label-industrial,
.label-warehouse {
  background-color: #007bff;
  color: white;
  padding: 5px;
  border-radius: 5px;
}

.modulos {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 0.5rem;
}
.texto__modulos {
  margin-left: 10px;
}

.name {
  padding: 5rem;
  position: absolute;
  right: 20px; /* ajusta el valor según sea necesario */
  top: 50%; /* para centrar verticalmente */
  transform: translateY(-50%);
}

.icon_user {
  padding: 1rem;
}

.i1ad {
  position: relative;
  right: 150 px;
}

.navbar-brand {
  position: relative; /* Establece la posición relativa para la barra de navegación */
  
  
}

.navbar-brand .fa-user {
  position: absolute; /* Establece la posición absoluta para el icono dentro de la barra de navegación */
  top: 50%; /* Coloca el icono en la mitad superior del contenedor */
  transform: translateY(-50%); /* Alinea verticalmente el icono al centro */
  margin-right: 10px; /* Añade un margen derecho para separar el icono del texto */
  left: -25px;
  
}

.user-info{
  margin-left: auto;

}