


.form-label {
    font-size: 18px;
}

.avatar-extra-xl {
    --bs-avatar-size: 4.5rem;
    --bs-avatar-initial: 2.333rem;
    --bs-avatar-initial-inline: 6px;
}





/* Header
 *
******************************************************************************* */
/*
.user-profile-header-banner img {
    block-size: 150px;
    inline-size: 100%;
    object-fit: cover;
}
*/
.user-profile-header {
    margin-block-start: -2rem;
}
.user-profile-header .user-profile-img {
    border: 5px solid;
    border-color: var(--bs-paper-bg);
    inline-size: 120px;
}

/* Responsive style */
@media (max-width: 767.98px) {
    .user-profile-header-banner img {
        block-size: 100px;
    }
    .user-profile-header .user-profile-img {
        inline-size: 100px;
    }
}

.profile-header-banner {
    block-size: 150px;
    inline-size: 100%;
    object-fit: cover;

    background: linear-gradient(115deg,
    #f28bba,
    #c574e8,
    #6ea9ff,
    #a0e3ff
    );
    background-size: 300% 300%;
    animation: movimientoGradiente 10s ease-in-out infinite;
    /*
    border-radius: 0 0 2rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    */
}

@keyframes movimientoGradiente {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}