.img-logo-nav {
    width: 110px;
    height: 100px;
    top: -7px !important;
}

.wonderColorPrincipal {
    background-color: #FDD623 !important;
    border: 1px #FDD623 solid
}

.wonderColorSecond {
    color: #d12881;
}

.wonderColorThree {
    color: #34327C;
}

.img-logo-login {
    width: 200px;
}

.img-logo-home{
    margin-top: 15px;
    width: 150px;
}

.color-table {
    background-color:  #34327C;
}

.color-thead {
    color: white !important;
}

.body-login {
    background: linear-gradient(135deg, #FDD623, #D12881, #34327C);
    background-size: 300% 300%;
    animation: gradientMove 10s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.avatar-frame {
    width: 200px;
    height: 200px;
    border: 3px solid #696cff; /* color marco */
    border-radius: 16px;       /* bordes redondeados */
    padding: 6px;              /* espacio entre marco e imagen */
    background: #f8f9fa;       /* fondo claro */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* sombra suave */
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
    /*object-fit: cover;*/
}

