/* Estilo para el banner */
.alert {
    border-radius: 10px;
    background-color: #d7e6cd;
    color: #4F4F4F;
    font-size: 1.2rem;
    padding: 2rem;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alert:hover {
    transform: scale(1.03);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.banner-btn-services,
.banner-btn-rules {
    color: #fff;
    background-color: #609C3D;
    font-weight: bold;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.banner-btn-services:hover,
.banner-btn-rules:hover {
    background-color: #4d7b2f;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

.animate-shake {
    animation: shake 1.5s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.form-check {
    display: flex;
    justify-content: center;
    gap: 0.2rem;
}

.form-check-input {
    width: 1.2rem;
    height: 1.2rem;
}

.form-check-label {
    font-size: 1.1rem;
    margin-left: 0.5rem;
    color: #4F4F4F;
}

.form-check + .form-check {
    margin-top: 1.5rem;
}

@media (max-width: 576px) {
    .form-check {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-check-input {
        top: 2.3rem;
        margin-bottom: 0.5rem;
    }

    .form-check-label {
        margin-left: 0;
    }
}
