.bg-form-register{
    background-color: #8a0000;
    border-radius: 35px;
}


.checkbox-container {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: white;
    cursor: pointer;
    margin-right: 10%;
}

.custom-checkbox {
    appearance: none;
    width: 25px;
    height: 25px;
    border: 1px solid white;
    border-radius: 3px;
    margin-right: 8px;
    margin-bottom: 5px;
    cursor: pointer;
    position: relative;
}

.check-new{
    width: 41px !important;
}

.custom-checkbox:checked {
    background-color: var(--sello-amarillo);
}

.custom-checkbox:checked::after {
    content: "✔";
    font-size: 12px;
    color: red;
    position: absolute;
  
}

.hr-register{
    background-color: var(--sello-rojo-fondo);
    height: 2px !important;
    opacity: 1;
}

.color-text-modal{
    color: black !important;
}

a:hover {
    color: white !important;
}

@media (max-width: 768px) {
    .check-new{
        width: 90px !important;
    }
}
 


