<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body{
    background-color: #ffffff;
    font-family: "Montserrat"; 
    overflow-x: hidden;
}

/*Color del checkbox marcado*/
.form-check-input:checked{
    background-color:#003b5c;
    border-color: #003b5c;
}

.btn-primary:disabled{
    background-color:#003b5c;
    border-color: #003b5c;
}

/* Aplica el estilo al checkbox */
input[type="checkbox"] {
    outline: none !important;
}


input[type="checkbox"]:focus {
    outline: none !important;
    box-shadow: none !important;
}

input, select, textarea {
    outline: none !important;
}

input:focus, select:focus, textarea:focus {
    outline: none !important;
    box-shadow: none !important;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}





@media screen and (max-width: 767px){
    body{
        overflow-x: hidden;
    }
}

</pre></body></html>