/* Texto con degradado BIBLIOTECA */

/* DEGRADADOS DE 3 COLORES */
.deg3-elegante {
    background: linear-gradient(45deg, #f5d9d9, #a9e4e4, #bee9c0);
}
.deg3-moderno {
    background: linear-gradient(45deg, #cfe5ee, #9dd4d0, #b2daee);
}
.deg3-chulo {
    background: linear-gradient(45deg, #eba4d9, #b362ac, #895ed8);
}

/* DEGRADADOS DE 2 COLORES */
.deg2-elegante {
    background: linear-gradient(315deg, #d7ecf5, #9ae4de);
}
.deg2-green {
    background: linear-gradient(315deg, #99e6b0, #04720a);
}
.deg2-red {
    background: linear-gradient(315deg, #fa9273, #a50c0c);
}

/* TEXT GLOW */
.t-gl-1 {
    text-shadow: 0 0 8px #ffffff;
}
.t-gl-2 {
    text-shadow: 0 0 10px #ffffff69;
}
.t-gl-green {
    text-shadow: 0 0 5px #0bdd1c90;
}
.t-gl-red {
    text-shadow: 0 0 5px #db090990;
}

.texto-degradado {
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent; /* Para compatibilidad en WebKit */
}

form {
    justify-content: center;
    align-self: center;
}