/* Estilos para os checkboxes do formulário de registro */
.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.form-check-input:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-check-label {
    font-size: 0.9rem;
    line-height: 1.4;
    cursor: pointer;
    color: #000 !important; /* Forçar texto preto */
    font-weight: 500;
}

.form-check-label a {
    text-decoration: none;
    font-weight: 500;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.form-check {
    padding-left: 0;
}

.form-check-input {
    margin-right: 0.5rem;
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    border: 2px solid #000; /* Borda preta */
    background-color: #fff;
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Estilo para a seção de termos e condições */
.termos-condicoes {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.termos-condicoes h6 {
    color: #000 !important; /* Título em preto */
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .form-check-label {
        font-size: 0.85rem;
    }
    
    .termos-condicoes {
        padding: 0.75rem;
    }
}
