/* Tiny checkbox override for login form */
.form-check-input[type="checkbox"] {
    width: 10px !important;
    height: 10px !important;
    min-width: 10px !important;
    max-width: 10px !important;
    margin-top: 3px !important;
    border-radius: 2px !important;
    flex-shrink: 0 !important;
    transform: scale(1) !important;
    font-size: 8px !important;
}

.form-check-input[type="checkbox"]:checked {
    background-size: 8px 8px !important;
}

.form-check {
    display: flex !important;
    align-items: flex-start !important;
    gap: 6px !important;
}

.form-check-label {
    font-size: 0.9rem !important;
    margin-left: 0 !important;
    line-height: 1.2 !important;
}

/* Extra small for mobile */
@media (max-width: 768px) {
    .form-check-input[type="checkbox"] {
        width: 8px !important;
        height: 8px !important;
        min-width: 8px !important;
        max-width: 8px !important;
        font-size: 6px !important;
    }
    
    .form-check-input[type="checkbox"]:checked {
        background-size: 6px 6px !important;
    }
    
    .form-check-label {
        font-size: 0.85rem !important;
    }
}