.fielset {
    all: revert;
}

.label-obligatoire.required:after {
    content: " * " !important;
    color: red;
    position: revert !important;
}

hr {
    height: 3px;
    background-color: #005cb9;
    border: none;
}

        /* Existing styles */
        
        /* Blinking effect */
        .blink-alert{
            animation: blinker 1s linear infinite;
        }

        @keyframes blinker {
            50% {
                opacity: 0;
            }
        }
