    /* Aplica a todos los inputs, selects y textareas */
                form .form-control,
                form .form-select {
                border: 1px solid #000;   /* borde negro */
                border-radius: 4px;       /* esquinas ligeras */
                margin-bottom: 4px;       /* mínima separación entre inputs */
                padding: 6px 10px;        /* compacto */
                font-size: 14px;
                width: 20rem;
                }
                /* Quitar el sombreado azul de Bootstrap al hacer focus */
                form .form-control:focus,
                form .form-select:focus {
                border-color: #000;
                box-shadow: none;
               }
               /* CSS: colócalo después de la carga de Bootstrap */
                .btn.btn-yellow-v1 {
                background: #F39325;         /* amarillo base */
                color: #fff;                 /* texto negro */
                border: none;                 /* sin borde */
                border-radius: 9999px;       /* forma "pill" totalmente redondeada */
                padding: 8px 20px;           /* tamaño cómodo */
                font-weight: 600;
                cursor: pointer;
                font-size:22px;
                box-shadow: none;            /* quitar sombra por defecto */
                background-image: none;      /* elimina posibles gradientes de Bootstrap */
                -webkit-appearance: none;    /* evita estilos nativos en algunos navegadores */
                }

                /* Hover */
                .btn.btn-yellow-v1:hover {
                background: #F39325;         /* tono más oscuro al pasar el mouse */
                }

                /* Focus / active — importante para quitar el "glow" de Bootstrap */
                .btn.btn-yellow-v1:focus,
                .btn.btn-yellow-v1:active {
                outline: none;
                box-shadow: none !important;
                }

                /* Variante: botón perfectamente circular (si quieres) */
                /* .btn.btn-yellow-v1.circle {
                    width: 48px;
                    height: 48px;
                    padding: 0;
                    border-radius: 50%;
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                }
                */