.divider:after,
.divider:before {
    content: "";
    flex: 1;
    height: 1px;
    background: #eee;
}

.h-custom {
    height: calc(100% - 73px);
}

@media (max-width: 450px) {
    .h-custom {
        height: 100%;
    }
}

#password,
#username {
    border-radius: 50px;
}

.iniciar {

    border-radius: 50px;
    border: 2px solid #FFFFFF;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* sombra suave */
    transition: box-shadow 0.3s ease;
    color: #164C6F;

}

.iniciar:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    /* más sombra al pasar el mouse */
}

.formulario {
    color: #164C6F;
}

body {
    background-image: url('/images/texturaPDB.svg');
    /* Ajusta la ruta a tu imagen */
    background-size: cover;
    /* Que cubra toda la pantalla */
    background-position: center;
    /* Centrada */
    background-repeat: no-repeat;
    /* No repetir */
    background-attachment: fixed;
    /* Se queda fija al hacer scroll */
}

.iconoPWD {
    display: inline-block;
    width: 10%;
    background-image: url('/images/passwordlogin.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: 50px;
    margin-right: -9%;
    z-index: 10;
}

.iconoUSR {
    display: inline-block;
    width: 10%;
    background-image: url('/images/loginUSR.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: 50px;
    margin-right: -9%;
    z-index: 10;
}