.blink {
        animation: blink-animation 1s steps(5, start) infinite;
        -webkit-animation: blink-animation 1s steps(5, start) infinite;
        color:darkred;  
    }

      @keyframes blink-animation {
        to {
          visibility: hidden;
        }
      }
      @-webkit-keyframes blink-animation {
        to {
          visibility: hidden;
        }
      }

.blinkOK {
        animation: blink-animation 1s steps(5, start) infinite;
        -webkit-animation: blink-animation 1s steps(5, start) infinite;
        color:green;  
    }


.iconos {
  height: 20px;
  width: 20px;
  
}

.icono2 {
  height: 50px;
  width: 50px;
  
}

.boton{
  border: 1px;
  border-color: black;
  border-radius: 5px;
  border-style: solid;
  width: 33%;
  text-align: center;

}

.agregar{
  background-color: aqua;

}

.requerido{
  border-color: red;
  
}


th{
  background-color: khaki;
  
}

thead{
  background-color: khaki;
  
}

.inicio{
  text-align: center;

}

.formulario{
  border-radius: 10px;
  border-style: solid;
  border-color: blue;
  border-width: 2px;
  margin-left: 25%;
  margin-right: 25%;

}

.avatar{
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
  border-color: black;


}

.encabezados{
  text-align: center;

}

body {
  position: relative;
  margin: 0;
  height: 100vh; /* Asegura que el body ocupe toda la altura de la ventana */
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/images/fondo_sistema.jpg'); /* Ruta de la imagen de la marca de agua */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; /* Hace que la imagen cubra toda la pantalla */
  opacity: 0.4; /* Baja la opacidad de la imagen */
  z-index: -1; /* Asegura que la imagen quede detrás del contenido */
}